copyWith method
Implementation
@override
CurrencyFilter copyWith({
InWhere<int>? ids,
InWhere<bool>? status,
LikeWhere? text,
}) =>
CurrencyFilter(
ids: ids ?? this.ids,
status: status ?? this.status,
text: text ?? this.text,
);