getExternalCachePaths method

Future<List<String>?> getExternalCachePaths()

Paths to directories where application specific external cache 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>?> getExternalCachePaths() {
  throw UnimplementedError(
      'getExternalCachePaths() has not been implemented.');
}