CardPaymentView constructor

const CardPaymentView({
  1. Key? key,
  2. required PaymentInfo paymentInfo,
  3. required Function onSubmit,
})

Implementation

const CardPaymentView({
  Key? key,
  required this.paymentInfo,
  required this.onSubmit,
}) : super(key: key);