copyWith method
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,
);
}