width property

double width
inherited

Implementation

double get width => _width;
void width=(double value)
inherited

Implementation

set width(double value) {
  assert(value >= 0 && value <= 1,
      'The width of the series should be between 0 and 1');
  if (value != _width) {
    _width = value;
  }
}