getBookmarkStr method

String getBookmarkStr()

Implementation

TBookmarkStr getBookmarkStr() {
  if (bookmarkAvailable()) {
    final data = TValueBuffer();
    getBookmarkData(activeBuffer()!, data);
    final bytes = data.value;
    if (bytes is Uint8List) return String.fromCharCodes(bytes);
  }
  return '';
}