FeedGetPostThreadInput constructor

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

Implementation

@JsonSerializable(includeIfNull: false)
const factory FeedGetPostThreadInput({
  /// Reference (AT-URI) to post record.
  required String 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;