FeedGetTimelineInput constructor

  1. @JsonSerializable(includeIfNull: false)
const FeedGetTimelineInput({
  1. String? algorithm,
  2. @Default(50) int limit,
  3. String? cursor,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory FeedGetTimelineInput({
  /// Variant 'algorithm' for timeline. Implementation-specific. NOTE: most feed flexibility has been moved to feed generator mechanism.
  String? algorithm,
  @Default(50) int limit,
  String? cursor,

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