LogLeaveConvo constructor

  1. @JsonSerializable(includeIfNull: false)
const LogLeaveConvo({
  1. @Default(chatBskyConvoDefsLogLeaveConvo) @JsonKey(name: r'$type') String $type,
  2. required String rev,
  3. required String convoId,
  4. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory LogLeaveConvo({
  /// The unique namespace for this lex object.
  ///
  /// `chat.bsky.convo.defs#logLeaveConvo`
  @Default(chatBskyConvoDefsLogLeaveConvo)
  @JsonKey(name: r'$type')
  String $type,
  required String rev,
  required String convoId,

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