DigitalWalletScreen constructor

const DigitalWalletScreen({
  1. Key? key,
  2. required dynamic onResponse(
    1. String
    ),
  3. required dynamic dismissDialog(),
  4. required dynamic log(
    1. String
    ),
  5. required double amount,
  6. required String terminalId,
  7. required String currency,
  8. required int currencyId,
  9. required int merchantId,
  10. required String transactionId,
})

Implementation

const DigitalWalletScreen({
  Key? key,
  required this.onResponse,
  required this.dismissDialog,
  required this.log,
  required this.amount,
  required this.terminalId,
  required this.currency,
  required this.currencyId,
  required this.merchantId,
  required this.transactionId,
}) : super(key: key);