SkeletonFeedPost constructor

  1. @JsonSerializable(includeIfNull: false)
const SkeletonFeedPost({
  1. @Default('app.bsky.feed.defs#skeletonFeedPost') String $type,
  2. @AtUriConverter() required AtUri post,
  3. @USkeletonFeedPostReasonConverter() USkeletonFeedPostReason? reason,
  4. String? feedContext,
  5. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory SkeletonFeedPost({
  @Default('app.bsky.feed.defs#skeletonFeedPost') String $type,
  @AtUriConverter() required AtUri post,
  @USkeletonFeedPostReasonConverter() USkeletonFeedPostReason? reason,

  /// Context that will be passed through to client and may be passed to feed generator back alongside interactions.
  String? feedContext,

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