SkeletonReasonRepost constructor

  1. @JsonSerializable(includeIfNull: false)
const SkeletonReasonRepost({
  1. @Default(appBskyFeedDefsSkeletonReasonRepost) @JsonKey(name: r'$type') String $type,
  2. @AtUriConverter() required AtUri repost,
  3. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory SkeletonReasonRepost({
  /// The unique namespace for this lex object.
  ///
  /// `app.bsky.feed.defs#skeletonReasonRepost`
  @Default(appBskyFeedDefsSkeletonReasonRepost)
  @JsonKey(name: r'$type')
  String $type,
  @AtUriConverter() required AtUri repost,

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