instance property

AcsFlutterSdkPlatform get instance

The default instance of AcsFlutterSdkPlatform to use.

Defaults to MethodChannelAcsFlutterSdk.

Implementation

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

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

Implementation

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