borderEndEndRadius property

  1. @override
CSSBorderRadius get borderEndEndRadius
override

Implementation

@override
CSSBorderRadius get borderEndEndRadius => _borderEndEndRadius ?? CSSBorderRadius.zero;
set borderEndEndRadius (CSSBorderRadius? value)

Implementation

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