ChatList constructor

ChatList({
  1. List<Message> children = const <Message>[],
  2. ScrollController? scrollController,
  3. bool shrinkWrap = true,
  4. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 5, vertical: 10),
})

Implementation

ChatList(
    {this.children = const <Message>[],
    this.scrollController,
    this.shrinkWrap = true,
    this.padding = const EdgeInsets.symmetric(horizontal: 5, vertical: 10)});