openDocumentFile method

bool openDocumentFile(
  1. String fileName
)

Opens the book from the specified fileName.

Implementation

bool openDocumentFile(String fileName) {
  bool? result = openDocumentFileNative?.call(_sdk, BufferString.fromDartString(fileName));

  return result!;
}