MessageSnapshotResponse constructor

const MessageSnapshotResponse({
  1. required DateTime timestamp,
  2. required MessageSnapshotResponseTypeType type,
  3. required MessageFlags flags,
  4. String? content,
  5. DateTime? editedTimestamp,
  6. List<String>? mentions,
  7. List<String>? mentionRoles,
  8. List<MessageChannelMentionResponse>? mentionChannels,
  9. List<MessageEmbedResponse>? embeds,
  10. List<MessageAttachmentResponse>? attachments,
  11. List<MessageStickerResponse>? stickers,
})

Implementation

const MessageSnapshotResponse({
  required this.timestamp,
  required this.type,
  required this.flags,
  this.content,
  this.editedTimestamp,
  this.mentions,
  this.mentionRoles,
  this.mentionChannels,
  this.embeds,
  this.attachments,
  this.stickers,
});