BookmarkView constructor
- @JsonSerializable(includeIfNull: false)
- @Default('app.bsky.bookmark.defs#bookmarkView') String $type,
- @RepoStrongRefConverter() required RepoStrongRef subject,
- DateTime? createdAt,
- @UBookmarkViewItemConverter() required UBookmarkViewItem item,
- Map<
String, dynamic> ? $unknown,
Implementation
@JsonSerializable(includeIfNull: false)
const factory BookmarkView({
@Default('app.bsky.bookmark.defs#bookmarkView') String $type,
/// A strong ref to the bookmarked record.
@RepoStrongRefConverter() required RepoStrongRef subject,
DateTime? createdAt,
@UBookmarkViewItemConverter() required UBookmarkViewItem item,
Map<String, dynamic>? $unknown,
}) = _BookmarkView;