instance property

Demo7Platform get instance

The default instance of Demo7Platform to use.

Defaults to MethodChannelDemo7.

Implementation

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

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

Implementation

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