Autopilot constructor

Autopilot({
  1. String host = "localhost",
  2. int port = 8080,
  3. Map<String, Handler> extraHandlers = const {},
  4. required Widget child,
  5. bool hideBanner = false,
})

Implementation

Autopilot({
  this.host = "localhost",
  this.port = 8080,
  this.extraHandlers = const {},
  required this.child,
  this.hideBanner = false,
});