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