pathCommand method

List<String> pathCommand(
  1. String commandName
)

Implementation

List<String> pathCommand(String commandName) {
  final filename = "${convertMixedToSnake(commandName)}.dart";
  return _createPath(commandPath, filename);
}