init method
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
}