ReleaseConfig constructor

ReleaseConfig({
  1. CodeCompilationConfig? codeCompilationConfig,
  2. String? cronSchedule,
  3. bool? disabled,
  4. String? gitCommitish,
  5. String? internalMetadata,
  6. String? name,
  7. List<ScheduledReleaseRecord>? recentScheduledReleaseRecords,
  8. String? releaseCompilationResult,
  9. String? timeZone,
})

Implementation

ReleaseConfig({
  this.codeCompilationConfig,
  this.cronSchedule,
  this.disabled,
  this.gitCommitish,
  this.internalMetadata,
  this.name,
  this.recentScheduledReleaseRecords,
  this.releaseCompilationResult,
  this.timeZone,
});