Pricing.fromMap constructor

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

Implementation

factory Pricing.fromMap(Map<String, dynamic> json) => Pricing(
      total: json["total"],
      products: json["products"],
    );