FeedGetRepostedByInput constructor
- @JsonSerializable.new(includeIfNull: false)
const
FeedGetRepostedByInput(
{ - @AtUriConverter.new() required AtUri uri,
- String? cid,
- @Default.new(50) int limit,
- String? cursor,
- 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;