SenderHeader constructor

const SenderHeader({
  1. Key? key,
  2. required bool? isGroupProfile,
  3. required List<ChatMessageModel> chatList,
  4. required int index,
})

Implementation

const SenderHeader({Key? key,
  required this.isGroupProfile,
  required this.chatList,
  required this.index})
    : super(key: key);