Future<void> forgotPassword(String email) async { await dio.post<dynamic>( endpoints.forgotPassword, data: {'email': email}, ); }