copyWith method
JiraExpressionValidationError
copyWith({
- int? column,
- String? expression,
- int? line,
- String? message,
- 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,
);
}