ChatState constructor

ChatState({
  1. required List<Message_text> messages,
  2. required bool isLoading,
})

Implementation

ChatState({
  required this.messages,

  required this.isLoading,
});