capLength property

double? capLength

Implementation

double? get capLength => _capLength;
void capLength=(double? value)

Implementation

set capLength(double? value) {
  if (_capLength != value) {
    _capLength = value;
    _updateErrorBarValues();
    forceTransformValues = true;
    markNeedsLayout();
  }
}