instance property

Hello1234Platform get instance

The default instance of Hello1234Platform to use.

Defaults to MethodChannelHello1234.

Implementation

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

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

Implementation

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