StepVariant constructor

StepVariant({
  1. required String id,
  2. String? uuid,
  3. String? stepId,
  4. StepIssues? issues,
  5. String? name,
  6. List<MessageFilter>? filters,
  7. String? templateId,
  8. String? parentId,
  9. MessageTemplate? template,
  10. bool? active,
  11. bool? shouldStopOnFail,
  12. ReplyCallback? replyCallback,
  13. Map<String, dynamic>? controlVariables,
  14. String? bridgeUrl,
})

Implementation

StepVariant({
  required this.id,
  this.uuid,
  this.stepId,
  this.issues,
  this.name,
  this.filters,
  this.templateId,
  this.parentId,
  this.template,
  this.active,
  this.shouldStopOnFail,
  this.replyCallback,
  this.controlVariables,
  this.bridgeUrl,
});