instance property

The current default FirebaseRemoteConfigPlatform instance.

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

Implementation

static FirebaseRemoteConfigPlatform get instance {
  return _instance ??= MethodChannelFirebaseRemoteConfig.instance;
}
void instance=(FirebaseRemoteConfigPlatform instance)

Sets the FirebaseRemoteConfigPlatform instance.

Implementation

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