copyWith method

JqlQueryToSanitize copyWith({
  1. String? accountId,
  2. String? query,
})

Implementation

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