setKillSwitch static method

void setKillSwitch({
  1. required bool enable,
})

Set kill switch (legacy method)

Implementation

static void setKillSwitch({required bool enable}) {
  // TODO: Implement kill switch
  print('Kill switch: $enable');
}