init static method

Future<void> init({
  1. String? googleServiceInfoPlistPathOverride,
  2. bool testing = false,
})

Implementation

static Future<void> init({
  String? googleServiceInfoPlistPathOverride,
  bool testing = false,
}) {
  debugPrint("Initializing CNotifySDK (v0.4.5) with testing mode: $testing");
  return CNotifySdkPlatform.instance.init(
    googleServiceInfoPlistPathOverride: googleServiceInfoPlistPathOverride,
    testing: testing,
  );
}