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