copyWith method

Implementation

JqlFunctionPrecomputationUpdateBean copyWith({String? id, String? value}) {
  return JqlFunctionPrecomputationUpdateBean(
    id: id ?? this.id,
    value: value ?? this.value,
  );
}