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