CheckoutPage constructor

const CheckoutPage({
  1. required Key? key,
  2. required String orderId,
  3. required String clientId,
  4. required String transactionId,
  5. required dynamic amount,
  6. required String merchandUserName,
  7. required String merchandPassword,
  8. required String sandbox,
  9. required String currency,
  10. required String accessToken,
  11. required Function actionAfterProccess,
  12. required String xApiKey,
})

Implementation

const CheckoutPage(
    {required Key? key,
    required this.orderId,
    required this.clientId,
    required this.transactionId,
    required this.amount,
    required this.merchandUserName,
    required this.merchandPassword,
    required this.sandbox,
    required this.currency,
    required this.accessToken,
    required this.actionAfterProccess,
    required this.xApiKey})
    : super(key: key);