mirror of
https://github.com/StarCitizenToolBox/app.git
synced 2026-02-04 14:21:12 +00:00
15 lines
475 B
Dart
15 lines
475 B
Dart
// Stub file for web platform - not used
|
|
class FileCacheUtils {
|
|
static Future<dynamic> getFile(String url) async {
|
|
throw UnsupportedError('File operations are not supported on web platform');
|
|
}
|
|
|
|
static Future<bool> clearCache(String url) async {
|
|
throw UnsupportedError('File operations are not supported on web platform');
|
|
}
|
|
|
|
static Future<void> clearAllCache() async {
|
|
throw UnsupportedError('File operations are not supported on web platform');
|
|
}
|
|
}
|