unread method

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

Marks the given notification as unread.

Implementation

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