vertical static method

AdBorderRadius vertical({
  1. double? top,
  2. double? bottom,
})

Creates a vertically symmetric border radius where the top and bottom sides of the rectangle have the same value.

Implementation

static AdBorderRadius vertical({double? top, double? bottom}) =>
    AdBorderRadius(
      topLeft: top,
      topRight: top,
      bottomLeft: bottom,
      bottomRight: bottom,
    );