updatePassword method
Implementation
Future<ResponseItemDTO> updatePassword({
ProfilePasswordChangeBody? profilePassword,
}) async {
return await _repository!.updatePassword(
profilePassword: profilePassword,
);
}
Future<ResponseItemDTO> updatePassword({
ProfilePasswordChangeBody? profilePassword,
}) async {
return await _repository!.updatePassword(
profilePassword: profilePassword,
);
}