getAppDataDir function

Future<String> getAppDataDir()

Document directory for WEB apps.

Flutter Web apps that store data typically use Web IndexDB instead and don't need a document path to store data.

This dummy version of getAppDataDir returns an empty string as the path.

Implementation

Future<String> getAppDataDir() async {
  return '';
}