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