backgroundWidth property

set backgroundWidth (double? v)

Implementation

set backgroundWidth(double? v) {
  if (_backgroundWidth == v) return;
  _backgroundWidth = v;
  _staticPicture = null;
  markNeedsPaint();
}