getExternalStoragePath method

Future<String?> getExternalStoragePath()

Path to a directory where the application may access top level storage. The current operating system should be determined before issuing this function call, as this functionality is only available on Android.

Implementation

Future<String?> getExternalStoragePath() {
  throw UnimplementedError(
      'getExternalStoragePath() has not been implemented.');
}