Files

8 lines
116 B
Dart

import 'svg_cache.dart';
class CacheInit {
static Future<void> init() async {
await SvgCache().init();
}
}