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