getPathDocument method Null safety

Future<String> getPathDocument(
  1. {required String folderName}
)

take path from folder folderName return path

Implementation

static Future<String> getPathDocument({required String folderName}) async {
  return await OpenDocumentPlatform.instance
      .getPathDocument(folderName: folderName);
}