getArgs<T> method

({List<String> both, List<String> dart, List<String> flutter}) getArgs<T>(
  1. Command<T> command
)

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);
}