RepoGetRecordInput constructor 
    
      
  
    
        - @JsonSerializable.new(includeIfNull: false)
 const
      
RepoGetRecordInput(
{ - required String repo, 
- required String collection, 
- required String rkey, 
- String? cid, 
- 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;