markPushNotificationReceived static method
Mark the message received.
Implementation
static Future<void> markPushNotificationReceived(Map<String, dynamic> data) async {
if (Platform.isAndroid) {
await _channel.invokeMethod('markPushNotificationReceived', data);
}
}