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