borderTopLeftRadius property
Implementation
@override
CSSBorderRadius get borderTopLeftRadius => _borderTopLeftRadius ?? CSSBorderRadius.zero;
set
borderTopLeftRadius
(CSSBorderRadius? value)
Implementation
set borderTopLeftRadius(CSSBorderRadius? value) {
if (value == _borderTopLeftRadius) return;
_borderTopLeftRadius = value;
renderBoxModel?.markNeedsPaint();
}