InspectorController constructor

InspectorController({
  1. bool enabled = false,
  2. ShowInspectorOn showInspectorOn = ShowInspectorOn.Shaking,
})

Implementation

factory InspectorController({
  bool enabled = false,
  ShowInspectorOn showInspectorOn = ShowInspectorOn.Shaking,
}) =>
    _singleton ??= InspectorController._internal(
      enabled,
      showInspectorOn,
    );