ChatView constructor

ChatView({
  1. required Key key,
  2. required List<Message> messages,
  3. required bool loading,
  4. required Function inputText,
  5. required List<Button> buttons,
})

Implementation

ChatView(
    {required Key key,
    required this.messages,
    required this.loading,
    required this.inputText,
    required this.buttons})
    : super(key: key);