instance property

The default instance of VietmapNavigationPluginPlatform to use.

Defaults to MethodChannelVietmapNavigationPlugin.

Implementation

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

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

Implementation

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