dump method

String dump()

Implementation

String dump() {
  return map((e) => e.toRadixString(16).padLeft(2, '0')).join(' ');
}