copyWith method
Implementation
WorkflowTrigger copyWith(
{String? id, Map<String, dynamic>? parameters, String? ruleKey}) {
return WorkflowTrigger(
id: id ?? this.id,
parameters: parameters ?? this.parameters,
ruleKey: ruleKey ?? this.ruleKey,
);
}