FeedGetPostThreadInput constructor

  1. @JsonSerializable(includeIfNull: false)
const FeedGetPostThreadInput({
  1. @AtUriConverter() required AtUri uri,
  2. @Default(6) int depth,
  3. @Default(80) int parentHeight,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory FeedGetPostThreadInput({
  /// Reference (AT-URI) to post record.
  @AtUriConverter() required AtUri uri,

  /// How many levels of reply depth should be included in response.
  @Default(6) int depth,

  /// How many levels of parent (and grandparent, etc) post to include.
  @Default(80) int parentHeight,

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