ClaimDetailSubDetail.fromYaml constructor

ClaimDetailSubDetail.fromYaml(
  1. dynamic yaml
)

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

Implementation

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