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