PaymentInfo constructor

PaymentInfo({
  1. required String secretKey,
  2. required String reference,
  3. required int amount,
  4. required String country,
  5. required String currency,
  6. required String email,
  7. required String firstName,
  8. required String lastName,
  9. dynamic metadata,
  10. Widget? companyAssetImage,
  11. PaymentCard? paymentCard,
})

Implementation

PaymentInfo({
  required this.secretKey,
  required this.reference,
  required this.amount,
  required this.country,
  required this.currency,
  required this.email,
  required this.firstName,
  required this.lastName,
  this.metadata,
  this.companyAssetImage,
  this.paymentCard,
});