instance property

SecureStorageService get instance

The app-wide singleton instance. Only available after init has been called.

Implementation

static SecureStorageService get instance {
  assert(
    _instance != null,
    'SecureStorageService not initialized. Call SecureStorageService.init() first.',
  );
  return _instance!;
}