Region constructor

Region({
  1. String? id,
  2. String? name,
  3. String? regionCode,
  4. String? regionCodeFull,
})

Implementation

Region({
  this.id,
  this.name,
  this.regionCode,
  this.regionCodeFull,
});