Border.only constructor
Creates a border with only the specified sides.
Implementation
factory Border.only({
String? top,
String? right,
String? bottom,
String? left,
}) =>
Border(
top: top ?? '',
right: right ?? '',
bottom: bottom ?? '',
left: left ?? '',
);