copyWith method

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

Implementation

ParameterIdListingDTO copyWith(
    {List<enums.ParameterId>? items, List<int>? ids, int? count}) {
  return ParameterIdListingDTO(
      items: items ?? this.items,
      ids: ids ?? this.ids,
      count: count ?? this.count);
}