import '../../domain/entities/client_notification.dart'; enum NotificationsStatus { initial, loading, success, failure } class NotificationsState { final NotificationsStatus status; final List notifications; final String? errorMessage; const NotificationsState({ this.status = NotificationsStatus.initial, this.notifications = const [], this.errorMessage, }); NotificationsState copyWith({ NotificationsStatus? status, List? notifications, String? errorMessage, }) { return NotificationsState( status: status ?? this.status, notifications: notifications ?? this.notifications, errorMessage: errorMessage ?? this.errorMessage, ); } }