WalletSuccessScreen constructor

const WalletSuccessScreen({
  1. Key? key,
  2. required String amount,
  3. required String currency,
  4. required String transactionId,
  5. bool isOrderPending = false,
})

Implementation

const WalletSuccessScreen({
  super.key,
  required this.amount,
  required this.currency,
  required this.transactionId,
  this.isOrderPending = false,
});