build method

Project build()

Implementation

Project build() {
  return Project(
    id: _id,
    createdAt: _createdAt,
    updatedAt: _updatedAt,
    archivedAt: _archivedAt,
    cloudProjectId: _cloudProjectId,
    owner: _owner,
    ownerId: _owner?.id ?? Uuid().v4obj(),
    roles: _roles,
    capsules: _capsules,
  );
}