WatchUser constructor

WatchUser({
  1. required String type,
  2. String? username,
  3. String? userKey,
  4. required String accountId,
  5. required Icon profilePicture,
  6. required String displayName,
  7. String? timeZone,
  8. required List<OperationCheckResult> operations,
  9. required bool isExternalCollaborator,
  10. UserDetails? details,
  11. required String accountType,
  12. required String email,
  13. required String publicName,
  14. required Map<String, dynamic> personalSpace,
  15. required bool externalCollaborator,
})

Implementation

WatchUser(
    {required this.type,
    this.username,
    this.userKey,
    required this.accountId,
    required this.profilePicture,
    required this.displayName,
    this.timeZone,
    required this.operations,
    required this.isExternalCollaborator,
    this.details,
    required this.accountType,
    required this.email,
    required this.publicName,
    required this.personalSpace,
    required this.externalCollaborator});