getStoragePath method

Future<String?> getStoragePath()

Implementation

Future<String?> getStoragePath() async{
  _getStoragePathCompleter=Completer();
  _channel.invokeMethod("getStoragePath");
  return await _getStoragePathCompleter?.future;
}