instance property

TooltipCkPlatform get instance

The default instance of TooltipCkPlatform to use.

Defaults to MethodChannelTooltipCk.

Implementation

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

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

Implementation

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