copyWithWrapped method
- Wrapped<
List< ? items,DealerOrgDTO> ?> - Wrapped<
int?> ? count,
Implementation
DealerOrgListingDTO copyWithWrapped(
{Wrapped<List<DealerOrgDTO>?>? items, Wrapped<int?>? count}) {
return DealerOrgListingDTO(
items: (items != null ? items.value : this.items),
count: (count != null ? count.value : this.count));
}