instance property

TestingPlatform get instance

Implementation

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

Implementation

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