what could be a possible reason why i’m not getting the full response in my flutter app as i am getting in postman
so i am suposed to make api call to fetch data plans from an endpoint url, it returns the complete data in postman which is
{
“status”: true,
“data_plans”: [
{
“id”: 12,
“name”: “MTN CG 500MB”,
“planid”: 7,
“gig_measurment”: 0,
“plan_code”: 106,
“validity”: “30 Days”,
“network”: 1,
“plan_type”: 2
},
{
“id”: 13,
“name”: “MTN CG 1GB”,
“planid”: 8,
“gig_measurment”: 1,
“plan_code”: 107,
“validity”: “30 Days”,
“network”: 1,
“plan_type”: 2
},
{
“id”: 14,
“name”: “MTN CG 2GB”,
“planid”: 9,
“gig_measurment”: 2,
“plan_code”: 108,
“validity”: “30 Days”,
“network”: 1,
“plan_type”: 2
},
{
“id”: 15,
“name”: “MTN CG 3GB”,
“planid”: 10,
“gig_measurment”: 3,
“plan_code”: 109,
“validity”: “30 Days”,
“network”: 1,
“plan_type”: 2
},
{
“id”: 16,
“name”: “MTN CG 5GB”,
“planid”: 11,
“gig_measurment”: 5,
“plan_code”: 110,
“validity”: “30 Days”,
“network”: 1,
“plan_type”: 2
},
{
“id”: 17,
“name”: “MTN CG 10GB”,
“planid”: 12,
“gig_measurment”: 10,
“plan_code”: 111,
“validity”: “30 Days”,
“network”: 1,
“plan_type”: 2
}
]
}