ProjectEnvironment constructor

ProjectEnvironment({
  1. required ComputeType computeType,
  2. required String image,
  3. required EnvironmentType type,
  4. String? certificate,
  5. List<EnvironmentVariable>? environmentVariables,
  6. ImagePullCredentialsType? imagePullCredentialsType,
  7. bool? privilegedMode,
  8. RegistryCredential? registryCredential,
})

Implementation

ProjectEnvironment({
  required this.computeType,
  required this.image,
  required this.type,
  this.certificate,
  this.environmentVariables,
  this.imagePullCredentialsType,
  this.privilegedMode,
  this.registryCredential,
});