WorkflowConfig constructor

WorkflowConfig({
  1. String? createTime,
  2. String? cronSchedule,
  3. bool? disabled,
  4. String? internalMetadata,
  5. InvocationConfig? invocationConfig,
  6. String? name,
  7. List<ScheduledExecutionRecord>? recentScheduledExecutionRecords,
  8. String? releaseConfig,
  9. String? timeZone,
  10. String? updateTime,
})

Implementation

WorkflowConfig({
  this.createTime,
  this.cronSchedule,
  this.disabled,
  this.internalMetadata,
  this.invocationConfig,
  this.name,
  this.recentScheduledExecutionRecords,
  this.releaseConfig,
  this.timeZone,
  this.updateTime,
});