TransactionInfo constructor

TransactionInfo({
  1. required String payerPhoneNumber,
  2. required num amount,
  3. String referenceId = '',
  4. required String invoiceId,
  5. String currency = 'USD',
  6. String description = 'Payment went through.',
})

Implementation

TransactionInfo({
  required this.payerPhoneNumber,
  required this.amount,
  this.referenceId = '',
  required this.invoiceId,
  this.currency = 'USD',
  this.description = 'Payment went through.',
});