SplitRefundCompleteView constructor

const SplitRefundCompleteView({
  1. Key? key,
  2. required double refundedAmount,
  3. required String currencySymbol,
  4. required String paymentType,
  5. required bool isSuccess,
  6. String? errorMessage,
  7. required VoidCallback onDone,
})

Implementation

const SplitRefundCompleteView({
  super.key,
  required this.refundedAmount,
  required this.currencySymbol,
  required this.paymentType,
  required this.isSuccess,
  this.errorMessage,
  required this.onDone,
});