productInformationFromJson function

List<ProductInformation> productInformationFromJson(
  1. List json
)

Implementation

List<ProductInformation> productInformationFromJson(List<dynamic> json) {
  return List<ProductInformation>.from(
      json.map((x) => ProductInformation.fromJson(x)));
}