instance property

The default instance of AlogMacosPlatform to use.

Defaults to MethodChannelAlogMacos.

Implementation

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

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

Implementation

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