toJson method
Implementation
@override
Map<String, dynamic> toJson() {
return {
'id': id,
'type': type,
'group': group,
'component_id': componentID,
'passing_parameter_values':
passingParameterValues.map((e) => e.toJson()).toList(),
};
}