addToBottomRight method

BorderRadius addToBottomRight(
  1. double value
)

Adds the specified value to the existing bottomRight radius

Implementation

BorderRadius addToBottomRight(double value) => copyWith(
      bottomRight: Radius.circular(bottomRight.x + value),
    );