DisassembleArguments constructor

DisassembleArguments({
  1. required int instructionCount,
  2. int? instructionOffset,
  3. required String memoryReference,
  4. int? offset,
  5. bool? resolveSymbols,
})

Implementation

DisassembleArguments({
  required this.instructionCount,
  this.instructionOffset,
  required this.memoryReference,
  this.offset,
  this.resolveSymbols,
});