HomeAccountObjectItemDTO constructor

HomeAccountObjectItemDTO({
  1. int? id,
  2. int? objectId,
  3. String? name,
  4. String? type,
  5. String? srNumber,
})

Returns a new HomeAccountObjectItemDTO instance.

Implementation

HomeAccountObjectItemDTO({
  this.id,
  this.objectId,
  this.name,
  this.type,
  this.srNumber,
});