toWords method

Uint8List toWords(
  1. Uint8List bytes
)

Bytes to Words

Implementation

Uint8List toWords(Uint8List bytes) {
  return _convert(data: bytes, inBits: 8, outBits: 5, pad: true);
}