TokenPayment constructor

TokenPayment(
  1. {required double amount,
  2. required String description,
  3. required Payer payer,
  4. required String cardToken,
  5. Notifications? notifications}
)

Implementation

TokenPayment({
  required super.amount,
  required super.description,
  required this.payer,
  required this.cardToken,
  super.notifications
});