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