bytes method
Returns the message bytes.
Implementation
Uint8List bytes() {
return switch (raw) {
Uint8List bytes => bytes,
_ => utf8.encode(raw),
};
}
Returns the message bytes.
Uint8List bytes() {
return switch (raw) {
Uint8List bytes => bytes,
_ => utf8.encode(raw),
};
}