FlutterLab constructor

const FlutterLab({
  1. Key? key,
  2. required Widget child,
  3. bool enabled = true,
  4. String url = "http://localhost",
  5. int port = 3000,
})

Implementation

const FlutterLab({
  Key? key,
  required this.child,
  this.enabled = true,
  this.url = "http://localhost",
  this.port = 3000,
})  : assert(port > 0 && port <= 65535, 'Invalid port number'),
      super(key: key);