instance property

The current default FirebaseDynamicLinksPlatform instance.

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

Implementation

static FirebaseDynamicLinksPlatform get instance {
  return _instance ??= MethodChannelFirebaseDynamicLinks();
}
void instance=(FirebaseDynamicLinksPlatform instance)

Sets the FirebaseFirestorePlatform.instance

Implementation

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