instance property

The current default FirebaseFunctionsPlatform instance.

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

Implementation

static FirebaseFunctionsPlatform get instance {
  return _instance ??= MethodChannelFirebaseFunctions.instance;
}
void instance=(FirebaseFunctionsPlatform instance)

Implementation

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