ResearchStudyLabel.fromYaml constructor

ResearchStudyLabel.fromYaml(
  1. dynamic yaml
)

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

Implementation

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