copyWith method
- List<
ParameterId> ? items, - List<
int> ? ids, - 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);
}