SystemMessageDataUnlockConvo constructor

  1. @JsonSerializable.new(includeIfNull: false)
const SystemMessageDataUnlockConvo({
  1. @Default.new('chat.bsky.convo.defs#systemMessageDataUnlockConvo') String $type,
  2. @SystemMessageReferredUserConverter() required SystemMessageReferredUser unlockedBy,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory SystemMessageDataUnlockConvo({
  @Default('chat.bsky.convo.defs#systemMessageDataUnlockConvo') String $type,

  /// Current view of the member who unlocked the group.
  @SystemMessageReferredUserConverter()
  required SystemMessageReferredUser unlockedBy,

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