Instruction constructor

Instruction(
  1. String name,
  2. List<String> args,
  3. int line, {
  4. String? blockComment,
  5. String? inlineComment,
})

Implementation

Instruction(
  this.name,
  this.args,
  this.line, {
  this.blockComment,
  this.inlineComment,
});