Network capture

Flutter implements its own network stack and does not use underlying iOS or Android ones. In order for Bugsee to intercept flutter network traffic, the handler has to be installed explicitly:

  // This is required to let Bugsee intercept network requests
  HttpOverrides.global = Bugsee.defaultHttpOverrides;

We recommend adding this line into the "main" method of your application.