BskyAppStatePref constructor

const BskyAppStatePref({
  1. @Default.new('app.bsky.actor.defs#bskyAppStatePref') String $type,
  2. @BskyAppProgressGuideConverter() BskyAppProgressGuide? activeProgressGuide,
  3. bool? isBetaUser,
  4. List<String>? queuedNudges,
  5. @NuxConverter() List<Nux>? nuxs,
  6. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory BskyAppStatePref({
  @Default('app.bsky.actor.defs#bskyAppStatePref') String $type,
  @BskyAppProgressGuideConverter() BskyAppProgressGuide? activeProgressGuide,

  /// Indicates if the user is participating in the beta features program.
  bool? isBetaUser,
  List<String>? queuedNudges,
  @NuxConverter() List<Nux>? nuxs,

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