initialize method
SDK Key initialization for platform-specific implementation
Implementation
@override
Future<void> initialize(String sdkKey) async {
_sdkKey = sdkKey;
print("MethodChannelIncomme initialized with SDK Key: $_sdkKey");
await methodChannel.invokeMethod('initialize', {"sdkKey": sdkKey});
}