isStoragePermissionGranted method

Future<bool> isStoragePermissionGranted()

Implementation

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