toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final country = this.country;
  final locationId = this.locationId;
  final postalCode = this.postalCode;
  final rate = this.rate;
  final region = this.region;
  final taxShip = this.taxShip;
  return {
    'country': ?country,
    'locationId': ?locationId,
    'postalCode': ?postalCode,
    'rate': ?rate,
    'region': ?region,
    'taxShip': ?taxShip,
  };
}