Group constructor

Group({
  1. required String id,
  2. required GroupTypeEnum type,
  3. required GroupAttributes attributes,
  4. required GroupRelationships relationships,
  5. required SelfLinks links,
})

Returns a new Group instance.

Implementation

Group({
  required this.id,
  required this.type,
  required this.attributes,
  required this.relationships,
  required this.links,
});