resetPasswordWithCode static method
Implementation
static Future<bool> resetPasswordWithCode({
required String email,
required String code,
required String newPassword,
}) {
return Auth.resetPasswordWithCode(
email: email,
code: code,
newPassword: newPassword,
);
}