ItemSearchMessage constructor

ItemSearchMessage({
  1. String? id,
  2. String? name,
  3. String? topic,
  4. String? image,
  5. int? participantCount,
  6. int? roomType,
  7. List<String>? participants,
})

Implementation

ItemSearchMessage({
  this.id,
  this.name,
  this.topic,
  this.image,
  this.participantCount,
  this.roomType,
  this.participants,
});