Office constructor

Office({
  1. String? divisionId,
  2. List<String>? levels,
  3. String? name,
  4. List<int>? officialIndices,
  5. List<String>? roles,
  6. List<Source>? sources,
})

Implementation

Office({
  this.divisionId,
  this.levels,
  this.name,
  this.officialIndices,
  this.roles,
  this.sources,
});