appendRaw method

AsmBuilderBase appendRaw(
  1. String raw
)

Appends a raw string to the instructions list

Implementation

AsmBuilderBase appendRaw(String raw) {
  _instructions.add(raw);
  return this;
}