LogApproveJoinRequest constructor

const LogApproveJoinRequest({
  1. @Default.new('chat.bsky.convo.defs#logApproveJoinRequest') String $type,
  2. required String rev,
  3. required String convoId,
  4. @ProfileViewBasicConverter() required ProfileViewBasic member,
  5. Map<String, dynamic>? $unknown,
})

Implementation

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

  /// Prospective member who requested to join.
  @ProfileViewBasicConverter() required ProfileViewBasic member,

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