markAsRead method
- String token,
- Notification notification
override
Marks the given notification
as read.
Implementation
@override
Future<void> markAsRead(String token, Notification notification) async {
await _setReadStatus(token, notification, true);
}