only static method

BorderRadius only({
  1. double? topLeft,
  2. double? topRight,
  3. double? bottomLeft,
  4. double? bottomRight,
})

Gives BorderRadius for each corner of a rectangle.

Implementation

static BorderRadius only({
  double? topLeft,
  double? topRight,
  double? bottomLeft,
  double? bottomRight,
}) =>
    _copyWith(
      topLeft: topLeft,
      topRight: topRight,
      bottomLeft: bottomLeft,
      bottomRight: bottomRight,
    );