Network Logging - Flutter
Enabling the Network Logging
LuciqCustomHttpClient client = LuciqCustomHttpClient();Using the Network Logger
client.getUrl(Uri.parse(URL)).then((request) async {
var response = await request.close();
});Last updated