pushSymbolCode method

void pushSymbolCode(
  1. String name
)

Append a symbol_code. Unlike symbol, symbol_code doesn't include a precision. */

Implementation

void pushSymbolCode(String name) {
  Uint8List a = Uint8List.fromList(utf8.encode(name));
  while (a.length < 8) {
    a.add(0);
  }
  pushArray(a.sublist(0, 8));
}