ArcGISCredentialStore constructor

ArcGISCredentialStore()

Creates an instance of an ArcGISCredentialStore.

Implementation

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