instance property

The default instance of FlutterSumPluginPlatform to use.

Implementation

static FlutterSumPluginPlatform get instance => _instance;
set instance (FlutterSumPluginPlatform instance)

Platform-specific implementations should set this with their own instance.

Implementation

static set instance(FlutterSumPluginPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}