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