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