markPushNotificationReceived static method

Future<void> markPushNotificationReceived(
  1. Map<String, dynamic> data
)

Mark the message received.

Implementation

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