fetchBusinessInfo function

Future<List<BusinessInfo>> fetchBusinessInfo()

Implementation

Future<List<BusinessInfo>> fetchBusinessInfo() async {
  HttpOverrides.global = new MyHttpOverrides();
  // final response = await http
  //    .get(Uri.parse('https://172.30.1.10:45455/api/BusinessInfoModels'));
  final response = await http
      .get(Uri.parse('https://192.168.1.106:45455/api/BusinessInfoModels'));
  List<BusinessInfo> businessInfo = [];

  if (response.statusCode == 200) {
    // If the server did return a 200 OK response,
    // then parse the JSON.
    var businessInfoJson = json.decode(response.body);
    for (var businessInfoJson in businessInfoJson) {
      businessInfo.add(BusinessInfo.fromJson(businessInfoJson));
    }
    return businessInfo;
  } else {
    // If the server did not return a 200 OK response,
    // then throw an exception.
    throw Exception('Failed to load Service');
  }
}