copyWith method

  1. @override
UserFilter copyWith({
  1. InWhere<int>? ids,
  2. LikeWhere? text,
})
override

Implementation

@override
UserFilter copyWith({
  InWhere<int>? ids,
  LikeWhere? text,
}) =>
    UserFilter(
      ids: ids ?? this.ids,
      text: text ?? this.text,
    );