ServiceDefinitionSearchModel constructor

ServiceDefinitionSearchModel({
  1. String? id,
  2. String? tenantId,
  3. List<String>? code,
  4. bool? isActive,
  5. String? boundaryCode,
  6. bool? isDeleted = false,
})

Implementation

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