Cities constructor

Cities({
  1. String? name,
  2. String? value,
  3. int? zip,
  4. List<String>? neighborhood,
})

Implementation

Cities({this.name, this.value, this.zip, this.neighborhood});