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