startActionPaneExtentRatio property

double get startActionPaneExtentRatio

The extent ratio of the start action pane.

Implementation

double get startActionPaneExtentRatio => _startActionPaneExtentRatio;
set startActionPaneExtentRatio (double value)

Implementation

set startActionPaneExtentRatio(double value) {
  if (_startActionPaneExtentRatio != value && value >= 0 && value <= 1) {
    _startActionPaneExtentRatio = value;
  }
}