copyWith method
Implementation
NotificationState copyWith({List<Notifications>? notifications}) {
return NotificationState(notifications: notifications ?? this.notifications);
}
NotificationState copyWith({List<Notifications>? notifications}) {
return NotificationState(notifications: notifications ?? this.notifications);
}