copyWith method

SubqueryBean copyWith({
  1. String? query,
})

Implementation

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