fromJson static method

ProductItemModel fromJson(
  1. String jsonString
)

Implementation

static ProductItemModel fromJson(String jsonString) {
  return purchasesSerializers.deserializeWith(ProductItemModel.serializer, json.decode(jsonString))!;
}