CustomButton constructor

const CustomButton({
  1. Key? key,
  2. required Function? onPaymentSuccess,
  3. required Function? onPaymentError,
})

Implementation

const CustomButton(
    {super.key,
    required this.onPaymentSuccess,
    required this.onPaymentError});