isOpposite property
      
      bool
      get
      isOpposite
      
    
    
For Panel.Horizontal|Horizontal and Panel.Vertical|Vertical Panels: gets or sets whether this Panel arranges its contents from the typical side (left and top, respectively), or the opposite side (right and bottom, respectively).
The default value is false.
Implementation
_i2.bool get isOpposite => _i4.getProperty(
      this,
      'isOpposite',
    );
      
      set
      isOpposite
      (bool value) 
      
    
    
    
Implementation
set isOpposite(_i2.bool value) {
  _i4.setProperty(
    this,
    'isOpposite',
    value,
  );
}