PaymentSuccessView constructor

const PaymentSuccessView({
  1. Key? key,
  2. required PaymentInfo paymentInfo,
  3. required String message,
  4. String title = "Transaction Successful!",
  5. required Function onClick,
})

Implementation

const PaymentSuccessView({
  Key? key,
  required this.paymentInfo,
  required this.message,
  this.title = "Transaction Successful!",
  required this.onClick,
}) : super(key: key);