copyWith method
Returns a copy of this TriggerParse with updated fields.
Implementation
TriggerParse copyWith({Trigger? trigger, FunctionCall? functionCall}) {
return TriggerParse(
trigger: trigger ?? this.trigger,
functionCall: functionCall ?? this.functionCall,
);
}