CheckoutPaypalPage constructor

const CheckoutPaypalPage({
  1. 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 Function actionAfterProccess,
})

Implementation

const CheckoutPaypalPage({
  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.actionAfterProccess,
}) : super(key: key);