StoneTechPaymentParams constructor

StoneTechPaymentParams({
  1. required double amount,
  2. required StoneTechPaymentType type,
  3. required StoneTechCredentialsModel credentials,
  4. StoneTechOptions? options,
  5. int? installments,
})

Implementation

StoneTechPaymentParams({
  required this.amount,
  required this.type,
  required this.credentials,
  this.options,
  this.installments,
});