instance property

The default instance of MacosUserAttentionPlatform to use.

Defaults to MethodChannelMacosUserAttention.

Implementation

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

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

Implementation

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