instance property

FlutterGsmsipPlatform get instance

The default instance of FlutterGsmsipPlatform to use.

Defaults to MethodChannelFlutterGsmsip.

Implementation

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

Platform-specific implementations should set this with their own platform-specific class that extends FlutterGsmsipPlatform when they register themselves.

Implementation

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