Chatbot.fromYaml constructor

Chatbot.fromYaml(
  1. File yamlFile
)

Implementation

factory Chatbot.fromYaml(File yamlFile) {
  final jsonString = json.encode(loadYaml(yamlFile.readAsStringSync()));

  return Chatbot.fromJson(json.decode(jsonString));
}