instance property

TeliverflutterPlatform get instance

The default instance of TeliverflutterPlatform to use.

Defaults to MethodChannelTeliverflutter.

Implementation

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

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

Implementation

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