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