FeedGetTimelineOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const FeedGetTimelineOutput({
  1. String? cursor,
  2. @FeedViewPostConverter() required List<FeedViewPost> feed,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory FeedGetTimelineOutput({
  String? cursor,
  @FeedViewPostConverter() required List<FeedViewPost> feed,

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