Border.only constructor
Implementation
factory Border.only({
String? top,
String? right,
String? bottom,
String? left,
}) =>
Border(
top: top ?? '',
right: right ?? '',
bottom: bottom ?? '',
left: left ?? '',
);