String toDartString(int maxLength) { final codeUnits = asTypedList(maxLength).takeWhile((c) => c != 0); return utf8.decode(codeUnits.toList()); }