bottomRightColor property

Color get bottomRightColor

Implementation

Color get bottomRightColor => _bottomRightColor;
set bottomRightColor (Color value)

Implementation

set bottomRightColor(Color value) {
  if (_bottomRightColor == value) {
    return;
  }
  _bottomRightColor = value;
  markNeedsPaint();
}