borderBottomRightRadius property

  1. @override
CSSBorderRadius get borderBottomRightRadius
override

Implementation

@override
CSSBorderRadius get borderBottomRightRadius => _borderBottomRightRadius ?? CSSBorderRadius.zero;
set borderBottomRightRadius (CSSBorderRadius? value)

Implementation

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