AccountEventStatus constructor

AccountEventStatus({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. String? externalCode,
  5. String? name,
  6. String? slug,
  7. String? description,
})

Implementation

AccountEventStatus({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.externalCode,
  this.name,
  this.slug,
  this.description,
});