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