vLine function
Implementation
Widget vLine({double? width, double? height, Color? color}) => SizedBox(
width: width ?? 1.0,
height: height ?? 24.0,
child: VerticalDivider(
width: width ?? 1.0, thickness: width ?? 1.0, color: color),
);