init method

Future<void> init(
  1. String cachePath
)

Call before runApp

Implementation

Future<void> init(String cachePath) async {
  cacheLogic = CacheLogic(path: cachePath);
  await cacheLogic!.init();
}