update method

Future<ResponseItemDTO> update({
  1. ProfilePutBody? profile,
})

Implementation

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