Organization constructor

const Organization({
  1. String? name,
  2. String? jobTitle,
  3. String? departmentName,
  4. String? phoneticName,
  5. String? jobDescription,
  6. String? symbol,
  7. String? officeLocation,
})

Implementation

const Organization({
  this.name,
  this.jobTitle,
  this.departmentName,
  this.phoneticName,
  this.jobDescription,
  this.symbol,
  this.officeLocation,
});