class ParcelWeightModel { String? deliveryCharge; String? id; String? title; ParcelWeightModel({this.deliveryCharge, this.id, this.title}); ParcelWeightModel.fromJson(Map json) { deliveryCharge = json['delivery_charge']; id = json['id']; title = json['title']; } Map toJson() { final Map data = {}; data['delivery_charge'] = deliveryCharge; data['id'] = id; data['title'] = title; return data; } }