readLengthCodedString method
Returns a length coded string, read from the buffer.
Implementation
String? readLengthCodedString() {
var length = readLengthCodedBinary();
if (length == null) {
return null;
}
return readString(length);
}
Returns a length coded string, read from the buffer.
String? readLengthCodedString() {
var length = readLengthCodedBinary();
if (length == null) {
return null;
}
return readString(length);
}