SplitRefundComplete constructor

const SplitRefundComplete({
  1. required double refundAmount,
  2. required String paymentType,
  3. String? refundEventId,
  4. required String parentEventId,
  5. required bool success,
  6. String? errorMessage,
  7. String? lastRefundId,
})

Implementation

const SplitRefundComplete({
  required this.refundAmount,
  required this.paymentType,
  this.refundEventId,
  required this.parentEventId,
  required this.success,
  this.errorMessage,
  this.lastRefundId,
});