RecordViewNotFound constructor
- @JsonSerializable(includeIfNull: false)
const
RecordViewNotFound(
{ - @Default(appBskyEmbedRecordViewNotFound) @JsonKey(name: r'$type') String $type,
- @AtUriConverter() required AtUri uri,
- required bool notFound,
- @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory RecordViewNotFound({
/// The unique namespace for this lex object.
///
/// `app.bsky.embed.record#viewNotFound`
@Default(appBskyEmbedRecordViewNotFound)
@JsonKey(name: r'$type')
String $type,
@AtUriConverter() required AtUri uri,
required bool notFound,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _RecordViewNotFound;