Group constructor

const Group({
  1. String? id,
  2. required String name,
  3. Account? account,
  4. int? contactCount,
})

Implementation

const Group({this.id, required this.name, this.account, this.contactCount});