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