FeedSearchPostsOutput constructor
- @JsonSerializable(includeIfNull: false)
Implementation
@JsonSerializable(includeIfNull: false)
const factory FeedSearchPostsOutput({
String? cursor,
/// Count of search hits. Optional, may be rounded/truncated, and may not be possible to paginate through all hits.
int? hitsTotal,
@PostViewConverter() required List<PostView> posts,
Map<String, dynamic>? $unknown,
}) = _FeedSearchPostsOutput;