instance property

Implementation

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

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

Implementation

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