instance property

OdmPlatform get instance

The default instance of OdmPlatform to use.

Defaults to MethodChannelOdm.

Implementation

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

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

Implementation

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