getTemporaryDirectory method
Implementation
@override
Future<String?> getTemporaryDirectory() async {
// Web temporary storage - maps to IndexedDB or sessionStorage
// This is cleared when the browser session ends
return '$_webStorageBasePath/temp';
}