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