instance property
AttriaxFlutterWindowsPlatform
get
instance
Returns the active platform implementation.
Implementation
static AttriaxFlutterWindowsPlatform get instance => _instance;
set
instance
(AttriaxFlutterWindowsPlatform instance)
Replaces the active platform implementation after token verification.
Implementation
static set instance(AttriaxFlutterWindowsPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}