instance property

The default instance of FlutterCombainSDKPlatform to use.

Defaults to MethodChannelFlutterAiIndoorNavigation.

Implementation

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

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

Implementation

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