toJson method

Map<String, dynamic> toJson()

Implementation

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