aspectRatio property
Implementation
@override
double? get aspectRatio {
  return _aspectRatio;
}
      
      set
      aspectRatio
      (double? value) 
      
    
    
    
Implementation
set aspectRatio(double? value) {
  if (_aspectRatio == value) return;
  _aspectRatio = value;
  _markSelfAndParentNeedsLayout();
}