markAsRead method

  1. @override
Future<void> markAsRead(
  1. String token,
  2. Notification notification
)
override

Marks the given notification as read.

Implementation

@override
Future<void> markAsRead(String token, Notification notification) async {
  await _setReadStatus(token, notification, true);
}