EmbedRecordViewNotFound constructor

  1. @JsonSerializable(includeIfNull: false)
const EmbedRecordViewNotFound({
  1. @Default('app.bsky.embed.record#viewNotFound') String $type,
  2. @AtUriConverter() required AtUri uri,
  3. required bool notFound,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory EmbedRecordViewNotFound({
  @Default('app.bsky.embed.record#viewNotFound') String $type,
  @AtUriConverter() required AtUri uri,
  required bool notFound,

  Map<String, dynamic>? $unknown,
}) = _EmbedRecordViewNotFound;