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