mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-10-31 10:14:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			321 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			321 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| /// Count the number of unread notifications
 | |
| ///
 | |
| /// @author Pierre Hubert
 | |
| 
 | |
| class CountUnreadNotifications {
 | |
|   final int notifications;
 | |
|   final int conversations;
 | |
| 
 | |
|   CountUnreadNotifications({
 | |
|     this.notifications,
 | |
|     this.conversations,
 | |
|   })  : assert(notifications != null),
 | |
|         assert(conversations != null);
 | |
| }
 |