copyWith method

TriggerParse copyWith({
  1. Trigger? trigger,
  2. FunctionCall? functionCall,
})

Implementation

TriggerParse copyWith({Trigger? trigger, FunctionCall? functionCall}) {
  return TriggerParse(
    trigger: trigger ?? this.trigger,
    functionCall: functionCall ?? this.functionCall,
  );
}