Town constructor

Town({
  1. required int id,
  2. required String name,
  3. required Town? region,
  4. required Country? country,
})

Implementation

Town({
  required this.id,
  required this.name,
  required this.region,
  required this.country,
});