Group constructor

Group({
  1. String? identifier,
  2. String? name,
  3. String? description,
  4. Iterable<String>? contacts,
})

Implementation

Group(
    {this.identifier, this.name, this.description, Iterable<String>? contacts})
    : contacts = (contacts ?? []).cast<String>().toSet();