LogBeginConvo constructor

  1. @JsonSerializable(includeIfNull: false)
const LogBeginConvo({
  1. @Default(chatBskyConvoDefsLogBeginConvo) @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 LogBeginConvo({
  /// The unique namespace for this lex object.
  ///
  /// `chat.bsky.convo.defs#logBeginConvo`
  @Default(chatBskyConvoDefsLogBeginConvo)
  @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,
}) = _LogBeginConvo;