Organization constructor

const Organization({
  1. String? company,
  2. String? department,
  3. String? jobTitle,
})

Constructs an Organization instance

Once created, no properties of an Organization object may be changed.

Implementation

const Organization({
  this.company,
  this.department,
  this.jobTitle,
});