pack method
Writes input
to buffer
.
Implementation
@override
void pack(final BufferWriter buffer, final String input) {
assertEncodedMaxLength(input, encoding, byteLength);
buffer.setString(input, encoding);
}
Writes input
to buffer
.
@override
void pack(final BufferWriter buffer, final String input) {
assertEncodedMaxLength(input, encoding, byteLength);
buffer.setString(input, encoding);
}