MedicationKnowledgePatientCharacteristics.fromYaml constructor

MedicationKnowledgePatientCharacteristics.fromYaml(
  1. dynamic yaml
)

Factory constructor that accepts a String in YAML format as an argument

Implementation

factory MedicationKnowledgePatientCharacteristics.fromYaml(dynamic yaml) => yaml
        is String
    ? MedicationKnowledgePatientCharacteristics.fromJson(
        jsonDecode(jsonEncode(loadYaml(yaml))) as Map<String, dynamic>)
    : yaml is YamlMap
        ? MedicationKnowledgePatientCharacteristics.fromJson(
            jsonDecode(jsonEncode(yaml)) as Map<String, dynamic>)
        : throw ArgumentError(
            'MedicationKnowledgePatientCharacteristics cannot be constructed from input provided,'
            ' it is neither a yaml string or a yaml map.');