endActionPaneExtentRatio property

double endActionPaneExtentRatio

The extent ratio of the end action pane.

Implementation

double get endActionPaneExtentRatio => _endActionPaneExtentRatio;
void endActionPaneExtentRatio=(double value)

Implementation

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