LogCreateJoinLink constructor

const LogCreateJoinLink({
  1. @Default.new('chat.bsky.convo.defs#logCreateJoinLink') String $type,
  2. required String rev,
  3. required String convoId,
  4. @SystemMessageViewConverter() required SystemMessageView message,
  5. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory LogCreateJoinLink({
  @Default('chat.bsky.convo.defs#logCreateJoinLink') String $type,
  required String rev,
  required String convoId,

  /// A system message with data of type #systemMessageDataCreateJoinLink
  @SystemMessageViewConverter() required SystemMessageView message,

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