borderBottomLeftRadius property

  1. @override
CSSBorderRadius get borderBottomLeftRadius
override

Implementation

@override
CSSBorderRadius get borderBottomLeftRadius => _borderBottomLeftRadius ?? CSSBorderRadius.zero;
set borderBottomLeftRadius (CSSBorderRadius? value)

Implementation

set borderBottomLeftRadius(CSSBorderRadius? value) {
  if (value == _borderBottomLeftRadius) return;
  _borderBottomLeftRadius = value;
  markNeedsPaint();
  resetBoxDecoration();
  _invalidateBorderRadiusCache();
  if (DebugFlags.enableBorderRadiusLogs) {
    try {
      final el = target;
      cssLogger.finer('[BorderRadius] set border-bottom-left-radius on <${el.tagName.toLowerCase()}> -> '
          '${value?.cssText() ?? 'unset'}');
    } catch (_) {}
  }
}