CreditLimitModel constructor

CreditLimitModel({
  1. String? id,
  2. String? partnerId,
  3. double? creditLimit,
  4. double? remainingCreditLimit,
  5. double? usedCreditLimit,
  6. double? totalCreditLimit,
  7. double? totalAvailableCreditLimit,
  8. double? totalTemporaryAvailableCreditLimit,
  9. double? totalTemporaryExpiredCreditLimit,
  10. double? totalTemporaryUsedCreditLimit,
  11. double? totalTemporyCreditLimit,
  12. double? totalUsedCreditLimit,
})

Implementation

CreditLimitModel(
    {this.id,
    this.partnerId,
    this.creditLimit,
    this.remainingCreditLimit,
    this.usedCreditLimit,
    this.totalCreditLimit,
    this.totalAvailableCreditLimit,
    this.totalTemporaryAvailableCreditLimit,
    this.totalTemporaryExpiredCreditLimit,
    this.totalTemporaryUsedCreditLimit,
    this.totalTemporyCreditLimit,
    this.totalUsedCreditLimit});