getExternalStoragePaths method

Future<List<String>?> getExternalStoragePaths({
  1. StorageDirectory? type,
})
inherited

Paths to directories where application specific data can be stored. These paths typically reside on external storage like separate partitions or SD cards. Phones may have multiple storage directories available.

Implementation

Future<List<String>?> getExternalStoragePaths({
  /// Optional parameter. See [StorageDirectory] for more informations on
  /// how this type translates to Android storage directories.
  StorageDirectory? type,
}) {
  throw UnimplementedError(
      'getExternalStoragePaths() has not been implemented.');
}