copyWith method
Create a copy with modified properties
Implementation
SyncFilter copyWith({
Map<String, dynamic>? where,
DateTime? since,
int? limit,
List<String>? fields,
List<String>? excludeFields,
}) {
return SyncFilter(
where: where ?? this.where,
since: since ?? this.since,
limit: limit ?? this.limit,
fields: fields ?? this.fields,
excludeFields: excludeFields ?? this.excludeFields,
);
}