logResponse static method
Implementation
static void logResponse(int statusCode, {dynamic body}) {
print('--- RESPONSE ---');
print('Status Code: $statusCode');
if (body != null) print('Body: $body');
print('----------------');
}
static void logResponse(int statusCode, {dynamic body}) {
print('--- RESPONSE ---');
print('Status Code: $statusCode');
if (body != null) print('Body: $body');
print('----------------');
}