analyzeAndParseResponse function
Implementation
Map<String, dynamic> analyzeAndParseResponse(http.Response response) {
if (response.statusCode == 200) return json.decode(response.body);
throw SimpleError('Erro ao se conectar com o serviço ViaCEP');
}