mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-19 15:06:53 +00:00
14 lines
390 B
Dart
14 lines
390 B
Dart
![]() |
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
|
||
|
|
||
|
class CustomImageCacheManager extends CacheManager with ImageCacheManager {
|
||
|
static const key = 'appflowy_image_cache';
|
||
|
|
||
|
static final CustomImageCacheManager _instance = CustomImageCacheManager._();
|
||
|
|
||
|
factory CustomImageCacheManager() {
|
||
|
return _instance;
|
||
|
}
|
||
|
|
||
|
CustomImageCacheManager._() : super(Config(key));
|
||
|
}
|