width property
Implementation
double get width => _width;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;
  }
}