instance property

ItqUtilsPlatform get instance

The default instance of ItqUtilsPlatform to use.

Defaults to MethodChannelItqUtils.

Implementation

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

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

Implementation

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