ProdCharacteristic.fromJsonString constructor

ProdCharacteristic.fromJsonString(
  1. String source
)

Acts like a constructor, returns a ProdCharacteristic, accepts a String as an argument, mostly because I got tired of typing it out

Implementation

factory ProdCharacteristic.fromJsonString(String source) {
  final dynamic json = jsonDecode(source);
  if (json is Map<String, dynamic>) {
    return _$ProdCharacteristicFromJson(json);
  } else {
    throw FormatException('FormatException:\nYou passed $json\n'
        'This does not properly decode to a Map<String,dynamic>.');
  }
}