defaultTable constant
Implementation
static const List<String> defaultTable = [
'abcdefghijklmnopqrstuvwxyz',
'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
// The first space in A2 (below): Z-character 6 from A2 means that the two subsequent Z-characters specify a ten-bit
// ZSCII character code: the next Z-character gives the top 5 bits and the one after the bottom 5.
//
// The second space represents a newline character and is handled in .readZString() below.
// ignore: unnecessary_string_escapes
' 0123456789.,!?_#\'\"/\\-:()',
];