ListItemView constructor
const
ListItemView({
- @Default.new('app.bsky.graph.defs#listItemView') String $type,
- @AtUriConverter.new() required AtUri uri,
- @ProfileViewConverter() required ProfileView subject,
- bool? subjectOptedOut,
- Map<
String, dynamic> ? $unknown,
Implementation
@JsonSerializable(includeIfNull: false)
const factory ListItemView({
@Default('app.bsky.graph.defs#listItemView') String $type,
@AtUriConverter() required AtUri uri,
@ProfileViewConverter() required ProfileView subject,
/// Set to true when the subject has opted out of appearing in the reference list. Only set when the viewer owns the list.
bool? subjectOptedOut,
Map<String, dynamic>? $unknown,
}) = _ListItemView;