base static method
Implementation
static String base(
ArgResults argResults,
Never Function(String message) usageException,
) {
final base = argResults.requireParam(_name);
if (base.isEmpty) {
usageException('base is empty');
}
return base;
}