writeString abstract method

void writeString(
  1. String value, {
  2. bool writeByteCount = true,
  3. Converter<String, List<int>> encoder = utf8Encoder,
})

Encode the UTF-8 String value and write its bytes.

Implementation

void writeString(
  String value, {
  bool writeByteCount = true,
  Converter<String, List<int>> encoder = utf8Encoder,
});