I am working with http request. suddenly on my request, i was getting response status code as "200" so that my api is working.. but, upon my response body that return is incomplete. by the way, this is my resources used.
String APILink = "http://10.12.50.46:9191";
String compressedString2;
Future<SuccessData> getSession() async {
http.Response response2=await http.post(
Uri.encodeFull(APILink+"/Mobile/StartSession"),
headers:{
"Auth-Key":"InSys-dev-key-001 ",
},body:compressedString2,
);
print("Compressed JSON:"+compressedString2);
print(response2.statusCode);
var dataGather2 = json.decode(response2.body);
print(response2.body);
}
this is my actual responseupon using insomnia (Rest API)
and here is my print data upon my logcat:
if you notice, my return data upon "ResultSet" is not complete.. also the other data do be fetch like status, errormsg,and tag is not viewed.


