getBorderRadiusCircularLR method

BorderRadius getBorderRadiusCircularLR(
  1. double topLeft,
  2. double topRight,
  3. double bottomLeft,
  4. double bottomRight,
)

Returns the dynamic border radius size for the topLeft, topRigt, bottomLeft & bottomRight percentages provided.

Implementation

BorderRadius getBorderRadiusCircularLR(
  double topLeft,
  double topRight,
  double bottomLeft,
  double bottomRight,
) =>
    BorderRadius.only(
      topLeft: Radius.circular(topLeft),
      topRight: Radius.circular(topRight),
      bottomLeft: Radius.circular(bottomLeft),
      bottomRight: Radius.circular(bottomRight),
    );