copyWith method

JqlFunctionPrecomputationBean copyWith({
  1. List<String>? arguments,
  2. DateTime? created,
  3. String? field,
  4. String? functionKey,
  5. String? functionName,
  6. String? id,
  7. String? operator$,
  8. DateTime? updated,
  9. DateTime? used,
  10. String? value,
})

Implementation

JqlFunctionPrecomputationBean copyWith(
    {List<String>? arguments,
    DateTime? created,
    String? field,
    String? functionKey,
    String? functionName,
    String? id,
    String? operator$,
    DateTime? updated,
    DateTime? used,
    String? value}) {
  return JqlFunctionPrecomputationBean(
    arguments: arguments ?? this.arguments,
    created: created ?? this.created,
    field: field ?? this.field,
    functionKey: functionKey ?? this.functionKey,
    functionName: functionName ?? this.functionName,
    id: id ?? this.id,
    operator$: operator$ ?? this.operator$,
    updated: updated ?? this.updated,
    used: used ?? this.used,
    value: value ?? this.value,
  );
}