FeedGetLikesInput constructor
- @JsonSerializable(includeIfNull: false)
const
FeedGetLikesInput(
{ - @AtUriConverter() required AtUri uri,
- String? cid,
- @Default(50) int limit,
- String? cursor,
- Map<String, dynamic>? $unknown,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory FeedGetLikesInput({
/// AT-URI of the subject (eg, a post record).
@AtUriConverter() required AtUri uri,
/// CID of the subject record (aka, specific version of record), to filter likes.
String? cid,
@Default(50) int limit,
String? cursor,
Map<String, dynamic>? $unknown,
}) = _FeedGetLikesInput;