type property

ErrorBarType? type

Implementation

ErrorBarType? get type => _type;
void type=(ErrorBarType? value)

Implementation

set type(ErrorBarType? value) {
  if (_type != value) {
    _type = value;
    _updateErrorBarValues();
    forceTransformValues = true;
    markNeedsLayout();
  }
}