GetListFeedOutput constructor

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

Implementation

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

  /// Contains unknown objects not defined in Lexicon.
  @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _GetListFeedOutput;