copyWith method
Implementation
NotificationRecipients copyWith(
{bool? assignee,
List<String>? groupIds,
List<GroupName>? groups,
bool? reporter,
List<UserDetails>? users,
bool? voters,
bool? watchers}) {
return NotificationRecipients(
assignee: assignee ?? this.assignee,
groupIds: groupIds ?? this.groupIds,
groups: groups ?? this.groups,
reporter: reporter ?? this.reporter,
users: users ?? this.users,
voters: voters ?? this.voters,
watchers: watchers ?? this.watchers,
);
}