copyWithWrapped method

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