ProjectState constructor

const ProjectState({
  1. Input<String?>? description,
  2. Input<String?>? displayName,
  3. Input<String?>? name,
  4. Input<String?>? region,
  5. Input<String?>? spaceName,
})

Creates a new ProjectState. description The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose. displayName The friendly name of the project that will be displayed to users. name The name of the project in the space. region Region where this resource will be managed. Defaults to the Region set in the provider configuration. spaceName The name of the space.

Implementation

const ProjectState({
  this.description,
  this.displayName,
  this.name,
  this.region,
  this.spaceName,
});