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