when method
Implementation
CommandBuilder when(
bool condition, {
String? then,
List<String>? also,
String? prefix,
String? suffix,
String? otherwise,
}) =>
string(
condition ? then : otherwise,
also: also,
prefix: prefix,
suffix: suffix,
);