json_handler
A new Flutter package to reduce the chunks of code to fetch Response from an API.
The package is under construction. Just live to test some features
Getting Started
Get data
var jsonHandler = JSONHandler();
var data = await jsonHandler.getData(
url: demoUrl, header: {'Accept': 'application/json'});
print(data);