documentId property
      
      String?
      get
      documentId
      
    
    
A UUID of the document that opened the connection.
Implementation
String? get documentId => _wrapped.documentId;
      
      set
      documentId
      (String? v) 
      
    
    
    
Implementation
set documentId(String? v) {
  _wrapped.documentId = v;
}