disableAndroidWriteExternalStoragePermissionCheck static method

Future<void> disableAndroidWriteExternalStoragePermissionCheck()

Disable the Android write external storage permission check.

This command is only relevant for Android. On iOS devices this function does nothing.

Implementation

static Future<void>
    disableAndroidWriteExternalStoragePermissionCheck() async {
  if (Platform.isAndroid) {
    return _channel
        .invokeMethod('disableAndroidWriteExternalStoragePermissionCheck');
  }
}