id property
      
      String
      get
      id
      
    
    
The unique identifier for the node. IDs are unique within the current profile, and they remain valid even after the browser is restarted.
Implementation
String get id => _wrapped.id;
      
      set
      id
      (String v) 
      
    
    
    
Implementation
set id(String v) {
  _wrapped.id = v;
}