PinMessageModel constructor

PinMessageModel({
  1. String? messageId,
  2. String? roomId,
  3. String? userId,
  4. String? displayName,
  5. String? messageContent,
})

Implementation

PinMessageModel({
  this.messageId,
  this.roomId,
  this.userId,
  this.displayName,
  this.messageContent,
});