SourceParams constructor

SourceParams({
  1. int? amount,
  2. String? currency,
  3. required String? returnURL,
  4. required String? type,
  5. String? name,
  6. String? statementDescriptor,
  7. String? country,
  8. String? email,
  9. CreditCard? card,
})

Implementation

SourceParams(
    {this.amount,
    this.currency,
    required this.returnURL,
    required this.type,
    this.name,
    this.statementDescriptor,
    this.country,
    this.email,
    this.card});