copyWith method
Implementation
JqlQueryToSanitize copyWith({String? accountId, String? query}) {
return JqlQueryToSanitize(
accountId: accountId ?? this.accountId,
query: query ?? this.query,
);
}
JqlQueryToSanitize copyWith({String? accountId, String? query}) {
return JqlQueryToSanitize(
accountId: accountId ?? this.accountId,
query: query ?? this.query,
);
}