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