StaffSearchModel.ignoreDeleted constructor

  1. @MappableConstructor()
StaffSearchModel.ignoreDeleted({
  1. String? id,
  2. List<String>? userId,
  3. String? boundaryCode,
})

Implementation

@MappableConstructor()
StaffSearchModel.ignoreDeleted({
  this.id,
  this.userId,
  super.boundaryCode,
}) : super(isDeleted: false);