I have suffered from this issue as well after upgrading flutter. What solved the issue for me was adding to main.dart:
import 'dart:io' as io; if (kDebugMode) { io.HttpClient.enableTimelineLogging = true; }
Before the runApp method.