Schedule constructor

Schedule({
  1. String? createTime,
  2. String? cronSchedule,
  3. String? description,
  4. String? displayName,
  5. ExecutionTemplate? executionTemplate,
  6. String? name,
  7. List<Execution>? recentExecutions,
  8. String? state,
  9. String? timeZone,
  10. String? updateTime,
})

Implementation

Schedule({
  this.createTime,
  this.cronSchedule,
  this.description,
  this.displayName,
  this.executionTemplate,
  this.name,
  this.recentExecutions,
  this.state,
  this.timeZone,
  this.updateTime,
});