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