initControl static method

bool initControl(
  1. ControlModule module, {
  2. Map? args,
  3. bool? debug,
})

Implementation

static bool initControl(ControlModule module, {Map? args, bool? debug}) =>
    Control.initControl(
      debug: debug ?? true,
      modules: [
        ...module.getInactiveSubmodules(Control.factory, args: args),
        module,
      ],
    );