isFreshchatNotification method
- Map pushPayload
Implementation
static Future<bool> isFreshchatNotification(Map pushPayload) async {
bool isFreshchatNotification =
await _channel.invokeMethod("isFreshchatNotification", <String, Map>{
'pushPayload': pushPayload,
});
return isFreshchatNotification;
}