getTemporaryDirectory static method
Gets the temporary directory path.
This is a directory that the system can clear at any time.
Implementation
static Future<String> getTemporaryDirectory() async {
if (kIsWeb) return ''; // Web implementation would use browser's temporary storage
return await _instance.getTemporaryDirectory();
}