postRequestNoAuth static method

Future postRequestNoAuth(
  1. dynamic url,
  2. dynamic body
)

Implementation

static Future<dynamic> postRequestNoAuth(url, body) async {

  var networkStatus = await connectionChecker();
  if (!networkStatus) {
    throw ("No internet connection");
  }

  var response = await http
      .post(Uri.parse(url), body: jsonEncode(body), headers: <String, String>{
    'Content-Type': 'application/json; charset=UTF-8',
  });
  return response;
}