MatchOnAccountContract constructor

MatchOnAccountContract({
  1. MatchOnAccountContractTypeEnum? type,
  2. String? paymentReference,
  3. String? invoiceReference,
  4. double? amount,
  5. double? exchangeRate,
})

Returns a new MatchOnAccountContract instance.

Implementation

MatchOnAccountContract({
  this.type,
  this.paymentReference,
  this.invoiceReference,
  this.amount,
  this.exchangeRate,
});