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