bottomLeftColor property

Color get bottomLeftColor

Implementation

Color get bottomLeftColor => _bottomLeftColor;
set bottomLeftColor (Color value)

Implementation

set bottomLeftColor(Color value) {
  if (_bottomLeftColor == value) {
    return;
  }
  _bottomLeftColor = value;
  markNeedsPaint();
}