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