getAssertionForEnrollment method

Future<MultiFactorAssertionPlatform> getAssertionForEnrollment(
  1. TotpSecretPlatform secret,
  2. String oneTimePassword
)

Get a MultiFactorAssertion which can be used to confirm ownership of a TOTP second factor.

Implementation

Future<MultiFactorAssertionPlatform> getAssertionForEnrollment(
  TotpSecretPlatform secret,
  String oneTimePassword,
) {
  throw UnimplementedError('getAssertionForEnrollment() is not implemented');
}