ReplyRef constructor

const ReplyRef({
  1. @Default.new('chat.bsky.convo.defs#replyRef') String $type,
  2. required String messageId,
  3. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ReplyRef({
  @Default('chat.bsky.convo.defs#replyRef') String $type,
  required String messageId,

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