openDocument method

Future<void> openDocument({
  1. required String filePath,
})

Open the document by the indicated path filePath,

Implementation

Future<void> openDocument({required String filePath}) async {
  throw UnimplementedError('openDocument has not been implemented.');
}