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