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