RoundedOutlinedBorder.onlyBottom constructor
Implementation
factory RoundedOutlinedBorder.onlyBottom({
required Widget? child,
bool clip = false,
}) =>
RoundedOutlinedBorder(
showTopLeft: false,
showTopRight: false,
clip: clip,
child: child,
);