ServiceDefinitionSearchModel.ignoreDeleted constructor

  1. @MappableConstructor()
ServiceDefinitionSearchModel.ignoreDeleted({
  1. String? id,
  2. String? tenantId,
  3. List<String>? code,
  4. bool? isActive,
  5. String? boundaryCode,
})

Implementation

@MappableConstructor()
ServiceDefinitionSearchModel.ignoreDeleted({
  this.id,
  this.tenantId,
  this.code,
  this.isActive,
  super.boundaryCode,
}) : super(isDeleted: false);