WooShippingMethodFreeShipping.fromJson constructor

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

Implementation

WooShippingMethodFreeShipping.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  title = json['title'];
  methodId = json['method_id'];
  cost = json['cost'];
}