Stats constructor

Stats({
  1. String? activeCount,
  2. String? disapprovedCount,
  3. String? expiringCount,
  4. String? pendingCount,
})

Implementation

Stats({
  this.activeCount,
  this.disapprovedCount,
  this.expiringCount,
  this.pendingCount,
});