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