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