Market constructor

Market({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. String? name,
  5. String? primaryCity,
})

Implementation

Market({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.name,
  this.primaryCity,
});