File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class WorkflowNode {
1414 final Map properties;
1515 final String ? color = null ;
1616 final String ? bgcolor = null ;
17- final List <dynamic >? widgets_values = [];
17+ final List <dynamic >? widgetsValues = [];
1818
1919 WorkflowNode (
2020 this .id,
@@ -30,7 +30,7 @@ class WorkflowNode {
3030 {
3131 String ? color,
3232 String ? bgcolor,
33- List <dynamic >? widgets_values
33+ List <dynamic >? widgetsValues
3434 }
3535 );
3636
@@ -47,7 +47,7 @@ class WorkflowNode {
4747 final properties = json['properties' ] as Map ;
4848 final color = json['color' ] as String ? ;
4949 final bgcolor = json['bgcolor' ] as String ? ;
50- final widgets_values = json['widgets_values' ] as List <dynamic >? ;
50+ final widgetsValues = json['widgets_values' ] as List <dynamic >? ;
5151
5252 return WorkflowNode (
5353 id,
@@ -62,7 +62,7 @@ class WorkflowNode {
6262 properties,
6363 color: color,
6464 bgcolor: bgcolor,
65- widgets_values : widgets_values
65+ widgetsValues : widgetsValues
6666 );
6767 }
6868}
You can’t perform that action at this time.
0 commit comments