putString method
Implementation
void putString(String? s) {
assert(() {
for (final codeUnit in s!.codeUnits) {
if (codeUnit > 0x7f) {
return false;
}
}
return true;
}());
putBytes(s!.codeUnits);
}
void putString(String? s) {
assert(() {
for (final codeUnit in s!.codeUnits) {
if (codeUnit > 0x7f) {
return false;
}
}
return true;
}());
putBytes(s!.codeUnits);
}