BulkUserLookup constructor

BulkUserLookup({
  1. required BulkUserLookupType type,
  2. String? username,
  3. String? userKey,
  4. required String accountId,
  5. required String accountType,
  6. required String email,
  7. required String publicName,
  8. required Icon profilePicture,
  9. required String displayName,
  10. String? timeZone,
  11. bool? isExternalCollaborator,
  12. List<OperationCheckResult>? operations,
  13. UserDetails? details,
  14. Space? personalSpace,
  15. required BulkUserLookupExpandable expandable,
  16. 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 ?? [];