BusinessArea constructor

const BusinessArea({
  1. String? location,
  2. String? name,
  3. String? id,
})

Implementation

const BusinessArea({
  this.location,
  this.name,
  this.id,
});