getStorageDirectory function

  1. @Deprecated('Android specific APIs will be removed soon in order to be replaced with a new set of original cross-platform APIs.')
Future<Directory?> getStorageDirectory()

Equivalent to Environment.getStorageDirectory

Refer to details

Implementation

@Deprecated(
  'Android specific APIs will be removed soon in order to be replaced with a new set of original cross-platform APIs.',
)
Future<Directory?> getStorageDirectory() {
  const kGetStorageDirectory = 'getStorageDirectory';

  return invokeVoidEnvironmentMethod(kGetStorageDirectory);
}