ReplyRef constructor

const ReplyRef({
  1. @Default.new('so.sprk.feed.reply#replyRef') String $type,
  2. @RepoStrongRefConverter.new() required RepoStrongRef root,
  3. @RepoStrongRefConverter.new() required RepoStrongRef parent,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ReplyRef({
  @Default('so.sprk.feed.reply#replyRef') String $type,
  @RepoStrongRefConverter() required RepoStrongRef root,
  @RepoStrongRefConverter() required RepoStrongRef parent,

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