writeString method
Write UTF-8 text into the stream.
Implementation
void writeString(String text) {
write(Uint8List.fromList(text.codeUnits));
}
Write UTF-8 text into the stream.
void writeString(String text) {
write(Uint8List.fromList(text.codeUnits));
}