Video constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory Video({
/// The unique namespace for this lex object.
///
/// `app.bsky.embed.video`
@Default(appBskyEmbedVideo) @JsonKey(name: r'$type') String $type,
@BlobConverter() required Blob video,
@VideoCaptionConverter() List<VideoCaption>? captions,
/// Alt text description of the video, for accessibility.
String? alt,
@AspectRatioConverter() AspectRatio? aspectRatio,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _Video;