ConvoView constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory ConvoView({
/// The unique namespace for this lex object.
///
/// `chat.bsky.convo.defs#convoView`
@Default(chatBskyConvoDefsConvoView) @JsonKey(name: r'$type') String $type,
required String id,
required String rev,
@ProfileViewBasicConverter() required List<ProfileViewBasic> members,
@UConvoViewLastMessageConverter() UConvoViewLastMessage? lastMessage,
required bool muted,
required int unreadCount,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _ConvoView;