enable2FA method

Future<void> enable2FA(
  1. String verificationCode
)

Turns on 2FA for the user.

Implementation

Future<void> enable2FA(String verificationCode) async {
  return await _postMessage('enable2FA', [verificationCode]);
}