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