verifyTOTP abstract method

Future<void> verifyTOTP(
  1. String code
)

Verifies the TOTP setup by validating a code generated by the token generator app with the current setup

Implementation

Future<void> verifyTOTP(
  // the code to validate the setup with
  String code,
);