DeviceMobileDetailDTO constructor

DeviceMobileDetailDTO({
  1. int? id,
  2. String? type,
  3. String? category,
  4. String? categoryCode,
  5. String? typeCode,
  6. String? modelName,
  7. String? name,
  8. List<String> objectNames = const [],
})

Returns a new DeviceMobileDetailDTO instance.

Implementation

DeviceMobileDetailDTO({
  this.id,
  this.type,
  this.category,
  this.categoryCode,
  this.typeCode,
  this.modelName,
  this.name,
  this.objectNames = const [],
});