UserAnonymous constructor
UserAnonymous({
- required String type,
- required Icon profilePicture,
- required String displayName,
- List<
OperationCheckResult> ? operations, - bool? isExternalCollaborator,
- UserAnonymousExpandable? expandable,
- required GenericLinks links,
Implementation
UserAnonymous(
{required this.type,
required this.profilePicture,
required this.displayName,
List<OperationCheckResult>? operations,
bool? isExternalCollaborator,
this.expandable,
required this.links})
: operations = operations ?? [],
isExternalCollaborator = isExternalCollaborator ?? false;