testNotificationTimestampUseCaseProvider top-level property
final
Implementation
@visibleForTesting
final testNotificationTimestampUseCaseProvider =
Provider<NotificationTimestampUseCase>((ref) {
return (AppNotification notification) => notification.timestamp != null
? DateUtils.dateOnly(notification.timestamp!.toUtc())
: null;
});