bytes method

Uint8List bytes()

Returns the message bytes.

Implementation

Uint8List bytes() {
  return switch (raw) {
    Uint8List bytes => bytes,
    _ => utf8.encode(raw),
  };
}