FeedGetAuthorFeedInput constructor

  1. @JsonSerializable(includeIfNull: false)
const FeedGetAuthorFeedInput({
  1. required String actor,
  2. @Default(50) int limit,
  3. String? cursor,
  4. @FeedGetAuthorFeedFilterConverter() FeedGetAuthorFeedFilter? filter,
  5. @Default(false) bool includePins,
  6. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory FeedGetAuthorFeedInput({
  required String actor,
  @Default(50) int limit,
  String? cursor,

  /// Combinations of post/repost types to include in response.
  @FeedGetAuthorFeedFilterConverter() FeedGetAuthorFeedFilter? filter,
  @Default(false) bool includePins,

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