topRightColor property
Color
get
topRightColor
Implementation
Color get topRightColor => _topRightColor;
set
topRightColor
(Color value)
Implementation
set topRightColor(Color value) {
if (_topRightColor == value) {
return;
}
_topRightColor = value;
markNeedsPaint();
}