flip property
      
      EnumValue
      get
      flip
      
    
    
Gets or sets how the Picture is displayed: Either normally or with a Horizontal or Vertical flip or both.
Possible values are GraphObject.None, GraphObject.FlipHorizontal, GraphObject.FlipVertical, or GraphObject.FlipBoth. The default is GraphObject.None.
Implementation
_i3.EnumValue get flip => _i4.getProperty(
      this,
      'flip',
    );
      
      set
      flip
      (EnumValue value) 
      
    
    
    
Implementation
set flip(_i3.EnumValue value) {
  _i4.setProperty(
    this,
    'flip',
    value,
  );
}