DevEnvironmentRepository constructor

const DevEnvironmentRepository({
  1. Input<String?>? branchName,
  2. required Input<String> repositoryName,
})

Creates a new DevEnvironmentRepository. branchName The name of the branch in a source repository. repositoryName The name of the source repository.

Implementation

const DevEnvironmentRepository({
  this.branchName,
  required this.repositoryName,
});