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