copyWith method

Query copyWith({
  1. String? a,
  2. String? c,
  3. int? d,
  4. int? e,
  5. String? f,
  6. bool? g,
  7. bool? h,
  8. bool? j,
})

Implementation

Query copyWith({
  String? a,
  String? c,
  int? d,
  int? e,
  String? f,
  bool? g,
  bool? h,
  bool? j,
}) {
  return Query(
    a: a ?? this.a,
    c: c ?? this.c,
    d: d ?? this.d,
    e: e ?? this.e,
    f: f ?? this.f,
    g: g ?? this.g,
    h: h ?? this.h,
    j: j ?? this.j,
  );
}