RepoGetRecordInput constructor

  1. @JsonSerializable(includeIfNull: false)
const RepoGetRecordInput({
  1. required String repo,
  2. required String collection,
  3. required String rkey,
  4. String? cid,
  5. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RepoGetRecordInput({
  /// The handle or DID of the repo.
  required String repo,

  /// The NSID of the record collection.
  required String collection,

  /// The Record Key.
  required String rkey,

  /// The CID of the version of the record. If not specified, then return the most recent version.
  String? cid,

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