OperationDefinition.fromYaml constructor

OperationDefinition.fromYaml(
  1. dynamic yaml
)

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

Implementation

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