copyWithWrapped method

DeviceMigrationRequestListingDTO copyWithWrapped({
  1. Wrapped<List<DeviceMigrationRequestDTO>?>? items,
  2. 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));
}