toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    'id': id,
    'type': type,
    'group': group,
    'condition': condition.toJson(),
    'actions_true_workflow':
        actionsTrueWorkflow.map((e) => e.toJson()).toList(),
    'actions_false_workflow':
        actionsFalseWorkflow.map((e) => e.toJson()).toList(),
  };
}