resetPasswordViaPhone method
Implementation
Future<bool> resetPasswordViaPhone({
required String phoneGrantToken,
required String newPassword,
}) async {
try {
await _emailAuthService.resetPasswordViaPhone(
phoneGrantToken: phoneGrantToken,
newPassword: newPassword,
);
return true;
} on DioException catch (e) {
_handleError(e);
return false;
}
}