writeString method

void writeString(
  1. Uint8List value
)

Write variable length string.

Implementation

void writeString(Uint8List value) {
  writeUint32(value.length);
  writeBytes(value);
}