getRun method

List<String> getRun()

Implementation

List<String> getRun() {
  return _instructions
      .where((i) => i.name == InstructNameType.RUN)
      .map((i) => i.args.join(' '))
      .toList();
}