Region constructor

Region({
  1. String? name,
  2. String? code,
  3. List<LocalArea>? localAreas,
})

Implementation

Region({
  this.name,
  this.code,
  this.localAreas,
});