intrinsicSize property
      
      Size
      get
      intrinsicSize
      
    
    
    
Implementation
Size get intrinsicSize => _intrinsicSize;
      
      set
      intrinsicSize
      (Size value) 
      
    
    
    
Implementation
set intrinsicSize(Size value) {
  if (_intrinsicSize == value) {
    return;
  }
  _intrinsicSize = value;
  if (parent != null) {
    markNeedsLayoutForSizedByParentChange();
  }
}