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