ShippingMethod.fromJson constructor
Implementation
ShippingMethod.fromJson(Map<String, dynamic> json) {
firstName = json['firstName'];
lastName = json['lastName'];
mobileNumber = json['mobileNumber'];
entityId = json['entityId'];
email = json['email'];
}