BulkUserLookup constructor
BulkUserLookup({
- required BulkUserLookupType type,
- String? username,
- String? userKey,
- required String accountId,
- required String accountType,
- required String email,
- required String publicName,
- required Icon profilePicture,
- required String displayName,
- String? timeZone,
- bool? isExternalCollaborator,
- List<
OperationCheckResult> ? operations, - UserDetails? details,
- Space? personalSpace,
- required BulkUserLookupExpandable expandable,
- required GenericLinks links,
Implementation
BulkUserLookup(
{required this.type,
this.username,
this.userKey,
required this.accountId,
required this.accountType,
required this.email,
required this.publicName,
required this.profilePicture,
required this.displayName,
this.timeZone,
bool? isExternalCollaborator,
List<OperationCheckResult>? operations,
this.details,
this.personalSpace,
required this.expandable,
required this.links})
: isExternalCollaborator = isExternalCollaborator ?? false,
operations = operations ?? [];