Group constructor

Group({
  1. String? id,
  2. String? name,
  3. List<Group> subGroups = const [],
})

Returns a new Group instance.

Implementation

Group({
  this.id,
  this.name,
  this.subGroups = const [],
});