Convert self to a slice and append it to the destination.
@override void encodeTo(int value, Output output) { assertion(value >= 0 && value <= 0xFF); return output.pushByte(value.toUnsigned(8)); }