Item constructor

Item({
  1. String? absoluteTime,
  2. List<AttachmentItem>? attachments,
  3. String? content,
  4. String? contentType,
  5. String? displayName,
  6. String? id,
  7. String? participantId,
  8. ParticipantRole? participantRole,
  9. ChatItemType? type,
})

Implementation

Item({
  this.absoluteTime,
  this.attachments,
  this.content,
  this.contentType,
  this.displayName,
  this.id,
  this.participantId,
  this.participantRole,
  this.type,
});