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