resetPassword method
Implementation
Future<ResponseItemDTO> resetPassword({ForgotPasswordBody? body}) async {
return await _repository!.resetPassword(
body: body,
);
}
Future<ResponseItemDTO> resetPassword({ForgotPasswordBody? body}) async {
return await _repository!.resetPassword(
body: body,
);
}