CreditLimit constructor

CreditLimit({
  1. dynamic creditLimit,
  2. String? currency,
  3. int? creditTerm,
  4. String? remarks,
  5. dynamic remainingCreditLimit,
  6. dynamic currentUsage,
  7. int? status,
  8. String? createdBy,
  9. String? createdDate,
  10. String? updatedBy,
  11. String? updatedDate,
  12. String? partnerId,
  13. String? usedCreditLimit,
  14. String? statusDescription,
})

Implementation

CreditLimit({
  this.creditLimit,
  this.currency,
  this.creditTerm,
  this.remarks,
  this.remainingCreditLimit,
  this.currentUsage,
  this.status,
  this.createdBy,
  this.createdDate,
  this.updatedBy,
  this.updatedDate,
  this.partnerId,
  this.usedCreditLimit,
  this.statusDescription,
});