ChatBotState constructor

ChatBotState({
  1. List<List<ChatBotMessage>> messages = const [],
  2. bool loading = false,
  3. List<String> allowedMessage = const [],
  4. String? error,
})

Implementation

ChatBotState({
  this.messages = const [],
  this.loading = false,
  this.allowedMessage = const [],
  this.error,
});