instance property

The current default FirebaseStoragePlatform instance.

It will always default to MethodChannelFirebaseStorage if no other implementation was provided.

Implementation

static FirebaseStoragePlatform get instance {
  return _instance ??= MethodChannelFirebaseStorage.instance;
}
void instance=(FirebaseStoragePlatform instance)

Implementation

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