toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final country = this.country;
  final locationId = this.locationId;
  final ratePercent = this.ratePercent;
  final shippingTaxed = this.shippingTaxed;
  final useGlobalRate = this.useGlobalRate;
  return {
    'country': ?country,
    'locationId': ?locationId,
    'ratePercent': ?ratePercent,
    'shippingTaxed': ?shippingTaxed,
    'useGlobalRate': ?useGlobalRate,
  };
}