GroupInfo constructor

const GroupInfo({
  1. required bool isGroupStart,
  2. required bool isGroupEnd,
  3. required bool isAlone,
  4. required bool showTail,
  5. required bool showAvatar,
})

Creates a GroupInfo instance

Implementation

const GroupInfo({
  required this.isGroupStart,
  required this.isGroupEnd,
  required this.isAlone,
  required this.showTail,
  required this.showAvatar,
});