init method

Future<void> init(
  1. String cachePath
)

Implementation

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