SearchDeviceModelRes constructor

const SearchDeviceModelRes({
  1. List<DeviceModel>? entities,
  2. required bool ok,
  3. String? msg,
  4. int? page,
  5. int? size,
  6. int? total,
})

Implementation

const SearchDeviceModelRes({
  this.entities,
  required this.ok,
  this.msg,
  this.page,
  this.size,
  this.total,
});