SplitRefundScreen constructor

const SplitRefundScreen({
  1. Key? key,
  2. required String splitId,
  3. required String transactionId,
  4. required String isoCurrencyCode,
  5. required String currencySymbol,
  6. required SplitConfigProvider configProvider,
  7. String? customerId,
  8. void onComplete(
    1. SplitRefundResult result
    )?,
  9. Future<void> onRefundComplete(
    1. String refundId
    )?,
})

Implementation

const SplitRefundScreen({
  super.key,
  required this.splitId,
  required this.transactionId,
  required this.isoCurrencyCode,
  required this.currencySymbol,
  required this.configProvider,
  this.customerId,
  this.onComplete,
  this.onRefundComplete,
});