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