openDocumentFile method
- String fileName
Opens the book from the specified fileName.
Implementation
bool openDocumentFile(String fileName) {
bool? result = openDocumentFileNative?.call(_sdk, BufferString.fromDartString(fileName));
return result!;
}