updatePassword method

Future<ResponseItemDTO> updatePassword({
  1. ProfilePasswordChangeBody? profilePassword,
})

Implementation

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