copyWithWrapped method

ParameterIdListingDTO copyWithWrapped({
  1. Wrapped<List<ParameterId>?>? items,
  2. Wrapped<List<int>?>? ids,
  3. Wrapped<int?>? count,
})

Implementation

ParameterIdListingDTO copyWithWrapped(
    {Wrapped<List<enums.ParameterId>?>? items,
    Wrapped<List<int>?>? ids,
    Wrapped<int?>? count}) {
  return ParameterIdListingDTO(
      items: (items != null ? items.value : this.items),
      ids: (ids != null ? ids.value : this.ids),
      count: (count != null ? count.value : this.count));
}