Destination constructor

Destination({
  1. String? accountNumber,
  2. double? amount,
  3. String? bankCode,
  4. String? mobileNumber,
  5. String? narration,
  6. String? phoneNumber,
  7. String? referenceNumber,
  8. String? responseCode,
  9. String? responseDescription,
  10. String? transactionCurrency,
  11. String? transactionID,
})

Implementation

Destination(
    {this.accountNumber,
    this.amount,
    this.bankCode,
    this.mobileNumber,
    this.narration,
    this.phoneNumber,
    this.referenceNumber,
    this.responseCode,
    this.responseDescription,
    this.transactionCurrency,
    this.transactionID});