toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
if (this.stepId != null) {
data['stepId'] = this.stepId!.toJson();
}
data['id'] = this.id;
data['workflowName'] = this.workflowName;
data['workflowId'] = this.workflowId;
data['bpmnFileName'] = this.bpmnFileName;
return data;
}