ChatListview constructor

const ChatListview({
  1. Key? key,
  2. required List<ChatModel> chatList,
  3. required bool isDategroup,
  4. double gropByTextsize = 12,
  5. double bubbleBorder = 15,
  6. Color senderBgColor = Colors.blue,
  7. Color receiverBgColor = Colors.grey,
  8. Color senderTextColor = Colors.white,
  9. Color groupByTextColor = Colors.white,
  10. Color receiverTextColor = Colors.black,
  11. bool isReverse = true,
})

Implementation

const ChatListview(
    {super.key,
    required this.chatList,
    required this.isDategroup,
    this.gropByTextsize = 12,
    this.bubbleBorder = 15,
    this.senderBgColor = Colors.blue,
    this.receiverBgColor = Colors.grey,
    this.senderTextColor = Colors.white,
    this.groupByTextColor = Colors.white,
    this.receiverTextColor = Colors.black,
    this.isReverse = true});