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