BskyAppProgressGuide constructor

  1. @JsonSerializable(includeIfNull: false)
const BskyAppProgressGuide({
  1. @Default(appBskyActorDefsBskyAppProgressGuide) @JsonKey(name: r'$type') String $type,
  2. required String guide,
  3. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory BskyAppProgressGuide({
  /// The unique namespace for this lex object.
  ///
  /// `app.bsky.actor.defs#bskyAppProgressGuide`
  @Default(appBskyActorDefsBskyAppProgressGuide)
  @JsonKey(name: r'$type')
  String $type,
  required String guide,

  /// Contains unknown objects not defined in Lexicon.
  @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _BskyAppProgressGuide;