instance property

The default instance of FirebaseTestlabDetectorPlatform to use.

Defaults to MethodChannelFirebaseTestlabDetector.

Implementation

static FirebaseTestlabDetectorPlatform get instance => _instance;
void instance=(FirebaseTestlabDetectorPlatform instance)

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

Implementation

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