CreditOverrideRule constructor

CreditOverrideRule({
  1. String? id,
  2. double? creditLimit,
  3. String? startDate,
  4. String? endDate,
  5. String? userId,
  6. int? status,
  7. String? statusDescription,
  8. String? createdBy,
  9. String? createdDate,
  10. String? updatedBy,
  11. String? updatedDate,
  12. double? remainingCreditLimit,
  13. double? usedCreditLimit,
})

Implementation

CreditOverrideRule(
    {this.id,
    this.creditLimit,
    this.startDate,
    this.endDate,
    this.userId,
    this.status,
    this.statusDescription,
    this.createdBy,
    this.createdDate,
    this.updatedBy,
    this.updatedDate,
    this.remainingCreditLimit,
    this.usedCreditLimit});