init method

Future<void> init(
  1. String cachePath
)

Init caches for RequestLogic and NotificationIconLogic usecachePath to provide a path to cache data

Implementation

Future<void> init(String cachePath) async {
  await requestLogic.init(cachePath);
  await notificationIconLogic
      .init(cachePath); //TODO: Maybe use different path
}