NotificationRecipients constructor
NotificationRecipients({})
Implementation
NotificationRecipients(
{bool? assignee,
List<String>? groupIds,
List<GroupName>? groups,
bool? reporter,
List<UserDetails>? users,
bool? voters,
bool? watchers})
: assignee = assignee ?? false,
groupIds = groupIds ?? [],
groups = groups ?? [],
reporter = reporter ?? false,
users = users ?? [],
voters = voters ?? false,
watchers = watchers ?? false;