FeedGetFeedSkeletonInput constructor

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

Implementation

@JsonSerializable(includeIfNull: false)
const factory FeedGetFeedSkeletonInput({
  /// Reference to feed generator record describing the specific feed being requested.
  @AtUriConverter() required AtUri feed,
  @Default(50) int limit,
  String? cursor,

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