FeedGetRepostedByInput constructor

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

Implementation

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

  /// If supplied, filters to reposts of specific version (by CID) of the post record.
  String? cid,
  @Default(50) int limit,
  String? cursor,

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