instance property

FirebasePlatform instance

The default instance of FirebasePlatform to use.

Platform-specific plugins should override this with their own class that extends FirebasePlatform when they register themselves.

Defaults to MethodChannelFirebase.

Implementation

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

Implementation

static set instance(FirebasePlatform instance) {
  PlatformInterface.verify(instance, _token);
  _instance = instance;
}