update method
Implementation
Future<ResponseItemDTO> update({
ProfilePutBody? profile,
}) async {
return await _repository!.update(
profile: profile,
);
}
Future<ResponseItemDTO> update({
ProfilePutBody? profile,
}) async {
return await _repository!.update(
profile: profile,
);
}