startActionPaneExtentRatio property

double startActionPaneExtentRatio

The extent ratio of the start action pane.

Implementation

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

Implementation

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