getArgs<T> method
Implementation
({
List<String> both,
List<String> dart,
List<String> flutter,
}) getArgs<T>(Command<T> command) {
final bothArgs = command._getBothArgs();
final dartArgs = command._getDartArgs();
final flutterArgs = command._getFlutterArgs();
return (both: bothArgs, dart: dartArgs, flutter: flutterArgs);
}