instance property

The current default PhoneMultiFactorGeneratorPlatform instance.

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

Implementation

static PhoneMultiFactorGeneratorPlatform get instance {
  _instance ??= MethodChannelPhoneMultiFactorGenerator();
  return _instance!;
}
void instance=(PhoneMultiFactorGeneratorPlatform instance)

Implementation

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