toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fullRefund = this.fullRefund;
  final itemBasedRefund = this.itemBasedRefund;
  final proratedRefund = this.proratedRefund;
  return {
    'fullRefund': ?fullRefund,
    'itemBasedRefund': ?itemBasedRefund,
    'proratedRefund': ?proratedRefund,
  };
}