instance property

The default instance of MamoBusinessSdkPlatform to use.

Defaults to MethodChannelMamoBusinessSdk.

Implementation

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

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

Implementation

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