ProductInfoReq.fromMap constructor

ProductInfoReq.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory ProductInfoReq.fromMap(Map<String, dynamic> json) => ProductInfoReq(
      priceType: json['priceType'],
      skuIds: json['skuIds'].cast<String>(),
      reservedInfor: json['reservedInfor'],
    );