hex method

String hex()

调试用:获取十六进制空格分隔指令字符串

Implementation

String hex() {
  return _commands.map((b) => b.toRadixString(16).padLeft(2, '0').toUpperCase()).join(' ');
}