MessageInput constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory MessageInput({
/// The unique namespace for this lex object.
///
/// `chat.bsky.convo.defs#messageInput`
@Default(chatBskyConvoDefsMessageInput)
@JsonKey(name: r'$type')
String $type,
required String text,
/// Annotations of text (mentions, URLs, hashtags, etc)
@FacetConverter() List<Facet>? facets,
@UMessageInputEmbedConverter() UMessageInputEmbed? embed,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _MessageInput;