FeedGetPostsOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const FeedGetPostsOutput({
  1. @PostViewConverter() required List<PostView> posts,
  2. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory FeedGetPostsOutput({
  @PostViewConverter() required List<PostView> posts,

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