RecordView constructor
- @JsonSerializable(includeIfNull: false)
- @Default(appBskyEmbedRecordView) @JsonKey(name: r'$type') String $type,
- @URecordViewRecordConverter() required URecordViewRecord record,
- @JsonKey(name: r'$unknown') Map<
String, dynamic> ? $unknown,
Implementation
@JsonSerializable(includeIfNull: false)
const factory RecordView({
/// The unique namespace for this lex object.
///
/// `app.bsky.embed.record#view`
@Default(appBskyEmbedRecordView) @JsonKey(name: r'$type') String $type,
@URecordViewRecordConverter() required URecordViewRecord record,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _RecordView;