solo_menu function
- @doNotSubmit
Unless solo is set to false, will run as solo.
Deprecated for temp usage only.
Implementation
@doNotSubmit
// ignore: non_constant_identifier_names
void solo_menu(String name, void Function() body, {String? cmd, bool? solo}) {
// ignore: invalid_use_of_do_not_submit_member
menu(name, body, cmd: cmd, solo: solo ?? true);
}