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