AssetsGroup constructor

AssetsGroup({
  1. required num id,
  2. required String groupUUId,
  3. required String name,
  4. String? orgId,
  5. String? parentId,
  6. DateTime? createdAt,
  7. DateTime? updatedAt,
  8. List<PlantBasic> plant = const [],
})

Returns a new AssetsGroup instance.

Implementation

AssetsGroup({
  required this.id,
  required this.groupUUId,
  required this.name,
  this.orgId,
  this.parentId,
  this.createdAt,
  this.updatedAt,
  this.plant = const [],
});