toJson method
Implementation
Map<String, dynamic> toJson() {
final name = this.name;
final values = this.values;
final condition = this.condition;
return {
'Name': name.toValue(),
'Values': values,
if (condition != null) 'Condition': condition.toValue(),
};
}