checkDocument static method Null safety

dynamic checkDocument(
  1. {required String filePath}
)

Check if the path already exists in document folder filePath

Implementation

static checkDocument({required String filePath}) {
  return OpenDocumentPlatform.instance.checkDocument(filePath: filePath);
}