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