borderEndStartRadius property
Implementation
@override
CSSBorderRadius get borderEndStartRadius => _borderEndStartRadius ?? CSSBorderRadius.zero;
set
borderEndStartRadius
(CSSBorderRadius? value)
Implementation
set borderEndStartRadius(CSSBorderRadius? value) {
if (value == _borderEndStartRadius) return;
_borderEndStartRadius = value;
markNeedsPaint();
resetBoxDecoration();
_invalidateBorderRadiusCache();
if (DebugFlags.enableBorderRadiusLogs) {
try {
final el = target;
cssLogger.finer('[BorderRadius] set border-end-start-radius on <${el.tagName.toLowerCase()}> -> '
'${value?.cssText() ?? 'unset'}');
} catch (_) {}
}
}