copyWith method

Implementation

FieldWasClause copyWith(
    {JqlQueryField? field,
    JqlQueryClauseOperand? operand,
    FieldWasClauseOperator? operator$,
    List<JqlQueryClauseTimePredicate>? predicates}) {
  return FieldWasClause(
    field: field ?? this.field,
    operand: operand ?? this.operand,
    operator$: operator$ ?? this.operator$,
    predicates: predicates ?? this.predicates,
  );
}