PaymentSuccessScreen constructor

const PaymentSuccessScreen({
  1. Key? key,
  2. required PaymentData paymentData,
  3. required num paymentAmount,
  4. required Color methodColor,
  5. VoidCallback? onFinish,
})

Implementation

const PaymentSuccessScreen({
  super.key,
  required this.paymentData,
  required this.paymentAmount,
  required this.methodColor,
  this.onFinish,
});