encodeTo method
Convert self to a slice and append it to the destination.
Implementation
@override
void encodeTo(final ScaleRawBytes value, final Output output) {
// Write the raw bytes directly without any encoding
output.write(value.bytes);
}
Convert self to a slice and append it to the destination.
@override
void encodeTo(final ScaleRawBytes value, final Output output) {
// Write the raw bytes directly without any encoding
output.write(value.bytes);
}