DelhiveryShippingFees.fromJson constructor

DelhiveryShippingFees.fromJson(
  1. Map<String, dynamic> json
)

Implementation

DelhiveryShippingFees.fromJson(Map<String, dynamic> json) {
  fees = json['fees'];
  shippingIGST = json['shippingIGST'];
  shippingSGST = json['shippingSGST'];
  shippingCGST = json['shippingCGST'];
  sTypename = json['__typename'];
}