BskyAppStatePref constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory BskyAppStatePref({
/// The unique namespace for this lex object.
///
/// `app.bsky.actor.defs#bskyAppStatePref`
@Default(appBskyActorDefsBskyAppStatePref)
@JsonKey(name: r'$type')
String $type,
@BskyAppProgressGuideConverter() BskyAppProgressGuide? activeProgressGuide,
/// An array of tokens which identify nudges (modals, popups, tours,
/// highlight dots) that should be shown to the user.
List<String>? queuedNudges,
/// Storage for NUXs the user has encountered.
@NuxConverter() List<Nux>? nuxs,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _BskyAppStatePref;