toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['id'] = this.id;
data['title'] = this.title;
data['method_id'] = this.methodId;
data['cost'] = this.cost;
data['class_cost'] = this.classCost;
data['calculation_type'] = this.calculationType;
data['taxable'] = this.taxable;
if (this.shippingClasses != null) {
data['shipping_classes'] =
this.shippingClasses!.map((v) => v.toJson()).toList();
}
return data;
}