isStoragePermissionGranted method
Implementation
Future<bool> isStoragePermissionGranted() async {
if (!Platform.isAndroid) return true;
return await _channel.invokeMethod<bool>(
'$_name/isStoragePermissionGranted',
) ??
false;
}