vLine function

Widget vLine({
  1. double? width,
  2. double? height,
  3. Color? color,
})

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),
    );