init static method
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,
);
}