copyWith method

Implementation

FieldChangedClause copyWith(
    {JqlQueryField? field,
    FieldChangedClauseOperator? operator$,
    List<JqlQueryClauseTimePredicate>? predicates}) {
  return FieldChangedClause(
    field: field ?? this.field,
    operator$: operator$ ?? this.operator$,
    predicates: predicates ?? this.predicates,
  );
}