handlePushNotificationOpenedWithContent method
Implementation
@override
void handlePushNotificationOpenedWithContent(Map<dynamic, dynamic> content) {
final Map<String, dynamic> params = <String, dynamic>{
"content": content,
};
methodChannel.invokeMethod(
ChannelKeys.handlePushNotificationOpenedWithContent, params);
}