build method
Implementation
User build() {
return User(
id: _id,
createdAt: _createdAt,
updatedAt: _updatedAt,
archivedAt: _archivedAt,
accountStatus: _accountStatus,
userAuthId: _userAuthId,
email: _email,
memberships: _memberships,
ownerId: _owner?.id ?? _ownerId,
owner: _owner,
);
}