JiraWorkflow constructor
JiraWorkflow({
- String? description,
- String? id,
- bool? isEditable,
- String? name,
- WorkflowScope? scope,
- WorkflowLayout? startPointLayout,
- List<
WorkflowReferenceStatus> ? statuses, - String? taskId,
- List<
WorkflowTransitions> ? transitions, - List<
ProjectIssueTypes> ? usages, - DocumentVersion? version,
Implementation
JiraWorkflow(
{this.description,
this.id,
bool? isEditable,
this.name,
this.scope,
this.startPointLayout,
List<WorkflowReferenceStatus>? statuses,
this.taskId,
List<WorkflowTransitions>? transitions,
List<ProjectIssueTypes>? usages,
this.version})
: isEditable = isEditable ?? false,
statuses = statuses ?? [],
transitions = transitions ?? [],
usages = usages ?? [];