internalStorage method

Future<bool?> internalStorage()

内部存储设置 Open Android settings in Internal Storage section. returns operation successful or failure.

Implementation

Future<bool?> internalStorage() {
  return postMessage<bool?>(
      action: 'android.settings.INTERNAL_STORAGE_SETTINGS');
}