productMaterialResultFromJson function

List<ProductMaterialResult> productMaterialResultFromJson(
  1. String str
)

Implementation

List<ProductMaterialResult> productMaterialResultFromJson(String str) => List<ProductMaterialResult>.from(json.decode(str).map(ProductMaterialResult.fromJson));