Creates a horizontally symmetrical border radius where the left and right sides of the rectangle have the same radii.
Source
const BorderRadius.horizontal({
Radius left: Radius.zero,
Radius right: Radius.zero
}) : this.only(
topLeft: left,
topRight: right,
bottomRight: right,
bottomLeft: left
);