ParameterGroupDTO constructor

const ParameterGroupDTO({
  1. int? id,
  2. String? name,
  3. List<int>? registerMapIds,
  4. List<ParameterSubGroupDTO>? subGroups,
})

Implementation

const ParameterGroupDTO({
  this.id,
  this.name,
  this.registerMapIds,
  this.subGroups,
});