toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final combinedConditions = this.combinedConditions;
final condition = this.condition;
final description = this.description;
final label = this.label;
final taskConfigId = this.taskConfigId;
final taskNumber = this.taskNumber;
return {
'combinedConditions': ?combinedConditions,
'condition': ?condition,
'description': ?description,
'label': ?label,
'taskConfigId': ?taskConfigId,
'taskNumber': ?taskNumber,
};
}