UserSearchModel constructor

UserSearchModel({
  1. String? id,
  2. String? userName,
  3. List<String>? uuid,
  4. String? boundaryCode,
  5. bool? isDeleted = false,
})

Implementation

UserSearchModel({
  this.id,
  this.userName,
  this.uuid,
  super.boundaryCode,
  super.isDeleted,
}) : super();