getApplicationDocumentsDirectory static method
Gets the application documents directory path.
On Android, this returns the external files directory. On iOS, this returns the documents directory.
Implementation
static Future<String> getApplicationDocumentsDirectory() async {
if (kIsWeb) return ''; // Web implementation would use IndexedDB
return await _instance.getApplicationDocumentsDirectory();
}