SavedFeedsPref constructor

  1. @JsonSerializable(includeIfNull: false)
const SavedFeedsPref({
  1. @Default('app.bsky.actor.defs#savedFeedsPref') String $type,
  2. @AtUriConverter() required List<AtUri> pinned,
  3. @AtUriConverter() required List<AtUri> saved,
  4. int? timelineIndex,
  5. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory SavedFeedsPref({
  @Default('app.bsky.actor.defs#savedFeedsPref') String $type,
  @AtUriConverter() required List<AtUri> pinned,
  @AtUriConverter() required List<AtUri> saved,
  int? timelineIndex,

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