forgotPassword method

Future<bool> forgotPassword(
  1. String email
)
inherited

Implementation

Future<bool> forgotPassword(String email) async {
  try {
    await _emailAuthService.forgotPassword(email);
    return true;
  } on DioException catch (e) {
    _handleError(e);
    return false;
  }
}