SenderHeader constructor

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

Implementation

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