copyWith method

  1. @override
PermissionFilter copyWith({
  1. InWhere<int>? ids,
  2. InWhere<bool>? status,
  3. LikeWhere? text,
  4. InWhere<int>? typeIds,
  5. InWhere<int>? upIds,
})
override

Implementation

@override
PermissionFilter copyWith({
  InWhere<int>? ids,
  InWhere<bool>? status,
  LikeWhere? text,
  InWhere<int>? typeIds,
  InWhere<int>? upIds,
}) =>
    PermissionFilter(
      ids: ids ?? this.ids,
      status: status ?? this.status,
      text: text ?? this.text,
      typeIds: typeIds ?? this.upIds,
      upIds: upIds ?? this.upIds,
    );