GetRepostedByOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const GetRepostedByOutput({
  1. @AtUriConverter() required AtUri uri,
  2. String? cid,
  3. String? cursor,
  4. @ProfileViewConverter() required List<ProfileView> repostedBy,
  5. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory GetRepostedByOutput({
  @AtUriConverter() required AtUri uri,
  String? cid,
  String? cursor,
  @ProfileViewConverter() required List<ProfileView> repostedBy,

  /// Contains unknown objects not defined in Lexicon.
  @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _GetRepostedByOutput;