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