SkeletonSearchPost constructor
- @JsonSerializable(includeIfNull: false)
const
SkeletonSearchPost(
{ - @Default(appBskyUnspeccedDefsSkeletonSearchPost) @JsonKey(name: r'$type') String $type,
- @AtUriConverter() required AtUri uri,
- @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory SkeletonSearchPost({
/// The unique namespace for this lex object.
///
/// `app.bsky.unspecced.defs#skeletonSearchPost`
@Default(appBskyUnspeccedDefsSkeletonSearchPost)
@JsonKey(name: r'$type')
String $type,
@AtUriConverter() required AtUri uri,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _SkeletonSearchPost;