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