CityModel constructor

CityModel({
  1. String? codigo_ibge,
  2. String? nome,
})

Implementation

CityModel({
  this.codigo_ibge,
  this.nome,
});