RepoStrongRef constructor

  1. @JsonSerializable(includeIfNull: false)
const RepoStrongRef({
  1. @Default('com.atproto.repo.strongRef') String $type,
  2. @AtUriConverter() required AtUri uri,
  3. required String cid,
  4. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RepoStrongRef({
  @Default('com.atproto.repo.strongRef') String $type,
  @AtUriConverter() required AtUri uri,
  required String cid,

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