Guid constructor

Guid()

Creates a new GUID object.

Implementation

factory Guid() {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GUID_create(errorHandler);
  });
  return Guid._withHandle(handle);
}