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