cidades property
Retorna uma lista de cidades desta região
Implementation
Future<Iterable<Cidade>> get cidades async {
if (this == nacional) {
return await Brasil.cidades;
}
if (this == exportacao || this == naoDefinido) {
return [];
}
return (await Brasil.cidades).where((e) => e.regiao == this);
}