copyWith method

JiraExpressionValidationError copyWith({
  1. int? column,
  2. String? expression,
  3. int? line,
  4. String? message,
  5. JiraExpressionValidationErrorType? type,
})

Implementation

JiraExpressionValidationError copyWith(
    {int? column,
    String? expression,
    int? line,
    String? message,
    JiraExpressionValidationErrorType? type}) {
  return JiraExpressionValidationError(
    column: column ?? this.column,
    expression: expression ?? this.expression,
    line: line ?? this.line,
    message: message ?? this.message,
    type: type ?? this.type,
  );
}