ProjectIdentity constructor

const ProjectIdentity({
  1. String? publisher,
  2. String? githubOrg,
  3. String? repositoryUrl,
})

Creates a project identity.

Implementation

const ProjectIdentity({
  this.publisher,
  this.githubOrg,
  this.repositoryUrl,
});