DeviceListingDTO constructor

const DeviceListingDTO({
  1. List<DeviceDTO>? items,
  2. int? count,
})

Implementation

const DeviceListingDTO({
  this.items,
  this.count,
});