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