InventoryItemName.fromYaml constructor

InventoryItemName.fromYaml(
  1. dynamic yaml
)

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

Implementation

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