Organization constructor Null safety

Organization(
  1. {String company: '',
  2. String title: '',
  3. String department: '',
  4. String jobDescription: '',
  5. String symbol: '',
  6. String phoneticName: '',
  7. String officeLocation: ''}
)

Implementation

Organization({
  this.company = '',
  this.title = '',
  this.department = '',
  this.jobDescription = '',
  this.symbol = '',
  this.phoneticName = '',
  this.officeLocation = '',
});