verifyEmail method

Future<String> verifyEmail(
  1. String verificationCode
)

Supplies email verification code obtained from prompting the user.

Implementation

Future<String> verifyEmail(String verificationCode) async {
  final result = await _postMessage('verifyEmail', [verificationCode]);
  return result[0];
}