checkFolderPermission method

  1. @override
Future<bool> checkFolderPermission({
  1. required String folderPath,
})
override

Implementation

@override
Future<bool> checkFolderPermission({required String folderPath}) async {
  final permission = await methodChannel.invokeMethod<bool>(
    'checkFolderPermission',
    {'folderPath': folderPath},
  );
  return permission ?? false;
}