DisassembledInstruction constructor

DisassembledInstruction({
  1. required String address,
  2. int? column,
  3. int? endColumn,
  4. int? endLine,
  5. required String instruction,
  6. String? instructionBytes,
  7. int? line,
  8. Source? location,
  9. String? symbol,
})

Implementation

DisassembledInstruction({
  required this.address,
  this.column,
  this.endColumn,
  this.endLine,
  required this.instruction,
  this.instructionBytes,
  this.line,
  this.location,
  this.symbol,
});