instance property

SupabaseEasyPlatform get instance

The default instance of SupabaseEasyPlatform to use.

Defaults to MethodChannelSupabaseEasy.

Implementation

static SupabaseEasyPlatform get instance => _instance;
set instance (SupabaseEasyPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends SupabaseEasyPlatform when they register themselves.

Implementation

static set instance(SupabaseEasyPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}