instance property

ComTappSoPlatform get instance

Default instance used by the public API.

Implementation

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

Set by platform-specific implementations.

Implementation

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