instance property
EasyDbPlatform
get
instance
The default instance of EasyDbPlatform to use.
Defaults to MethodChannelEasyDb.
Implementation
static EasyDbPlatform get instance => _instance;
set
instance
(EasyDbPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends EasyDbPlatform when they register themselves.
Implementation
static set instance(EasyDbPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}