copyWith method
JqlFunctionPrecomputationBean
copyWith(
{ - List<String>? arguments,
- DateTime? created,
- String? field,
- String? functionKey,
- String? functionName,
- String? id,
- String? operator$,
- DateTime? updated,
- DateTime? used,
- 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,
);
}