horizontal static method

AdBorderRadius horizontal({
  1. double? left,
  2. double? right,
})

Creates a horizontally symmetrical border radius where the left and right sides of the rectangle have the same value.

Implementation

static AdBorderRadius horizontal({double? left, double? right}) =>
    AdBorderRadius(
      topLeft: left,
      bottomLeft: left,
      topRight: right,
      bottomRight: right,
    );