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