copyWith method

JiraExpressionsComplexityValueBean copyWith({
  1. int? limit,
  2. int? value,
})

Implementation

JiraExpressionsComplexityValueBean copyWith({int? limit, int? value}) {
  return JiraExpressionsComplexityValueBean(
    limit: limit ?? this.limit,
    value: value ?? this.value,
  );
}