instance property

The default instance of ZaptSdkFlutterPlatform to use.

Defaults to MethodChannelZaptSdkFlutter.

Implementation

static ZaptSdkFlutterPlatform get instance => _instance;
void instance=(ZaptSdkFlutterPlatform instance)

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

Implementation

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