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