ChatState constructor

ChatState({
  1. String? from,
  2. String? senderJid,
  3. String? id,
  4. String? type,
  5. String? msgtype,
  6. TypingStatus? chatStateType,
})

Implementation

ChatState({
  this.from,
  this.senderJid,
  this.id,
  this.type,
  this.msgtype,
  this.chatStateType,
});