RegionalBloc constructor

RegionalBloc({
  1. String? acronym,
  2. String? name,
  3. List? otherAcronyms,
  4. List? otherNames,
})

Implementation

RegionalBloc({
  this.acronym,
  this.name,
  this.otherAcronyms,
  this.otherNames,
});