FeedGetLikesInput constructor

  1. @JsonSerializable(includeIfNull: false)
const FeedGetLikesInput({
  1. @AtUriConverter() required AtUri uri,
  2. String? cid,
  3. @Default(50) int limit,
  4. String? cursor,
  5. 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;