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) {
  final l = List<int>.from(utf8.encode(name));
  while(l.length <8) {
    l.add(0);
  }
  Uint8List a = Uint8List.fromList(l);
  pushArray(a.sublist(0, 8));
}