FlutterCockpitHost constructor

const FlutterCockpitHost({
  1. Widget? child,
  2. WidgetBuilder? builder,
  3. FlutterCockpitConfiguration configuration = const FlutterCockpitConfiguration(),
  4. bool ownsRuntime = false,
  5. Key? key,
})

Implementation

const FlutterCockpitHost({
  this.child,
  this.builder,
  this.configuration = const FlutterCockpitConfiguration(),
  this.ownsRuntime = false,
  super.key,
}) : assert(child != null || builder != null);