decode8BitTextData static method

Uint8List decode8BitTextData(
  1. String part
)

Decodes the data from the given 8bit text part

Implementation

static Uint8List decode8BitTextData(final String part) =>
    Uint8List.fromList(part.replaceAll('\r\n', '').codeUnits);