Chatbot constructor

Chatbot(
  1. {required String botName,
  2. required List<Dialog> dialogs}
)

Implementation

Chatbot({required this.botName, required this.dialogs})
    : phraseMatch = PhraseMatch();