GroupDto constructor

GroupDto({
  1. required String id,
  2. String? rev,
  3. int? deletionDate,
  4. String? name,
  5. String? password,
  6. List<String> servers = const [],
  7. required bool superAdmin,
  8. Set<PropertyStubDto> properties = const {},
  9. String? superGroup,
})

Returns a new GroupDto instance.

Implementation

GroupDto({
  required this.id,
  this.rev,
  this.deletionDate,
  this.name,
  this.password,
  this.servers = const [],
  required this.superAdmin,
  this.properties = const {},
  this.superGroup,
});