getCmd method

List<String> getCmd()

Implementation

List<String> getCmd() {
  final instr = _instructions.lastWhere(
    (i) => i.name == InstructNameType.CMD,
    orElse: () => Instruction('NONE', [], 0),
  );
  return instr.args;
}