getExternalStoragePath method

  1. @override
Future<String?> getExternalStoragePath()
override

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

@override
Future<String?> getExternalStoragePath() async {
  throw UnsupportedError('getExternalStoragePath is not supported on iOS');
}