FeedGetFeedSkeletonOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const FeedGetFeedSkeletonOutput({
  1. String? cursor,
  2. @SkeletonFeedPostConverter() required List<SkeletonFeedPost> feed,
  3. String? reqId,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory FeedGetFeedSkeletonOutput({
  String? cursor,
  @SkeletonFeedPostConverter() required List<SkeletonFeedPost> feed,

  /// Unique identifier per request that may be passed back alongside interactions.
  String? reqId,

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