copyWith method
Query
copyWith({
- QueryAction? action,
- Map<
String, dynamic> ? providerArgs, - List<
WhereCondition> ? where,
Implementation
Query copyWith({
QueryAction? action,
Map<String, dynamic>? providerArgs,
List<WhereCondition>? where,
}) =>
Query(
action: action ?? this.action,
providerArgs: providerArgs ?? this.providerArgs,
where: where ?? this.where,
);