instance property

RdiTelePlatform instance

The default instance of RdiTelePlatform to use.

Defaults to MethodChannelRdiTele.

Implementation

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

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

Implementation

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