AccountFilter constructor

const AccountFilter({
  1. InWhere<int>? ids,
  2. InWhere<bool>? status,
  3. LikeWhere? text,
  4. InWhere<int>? branchIds,
  5. InWhere<int>? typeIds,
  6. InWhere<int>? levelIds,
  7. InWhere<int>? groupIds,
  8. InWhere<int>? upIds,
  9. InWhere<int>? userIds,
})

Implementation

const AccountFilter({
  super.ids,
  super.status,
  super.text,
  this.branchIds,
  this.typeIds,
  this.levelIds,
  this.groupIds,
  this.upIds,
  this.userIds,
});