vLine function
Widget
vLine({
- Color color = Colors.black,
- double width = 1,
- double height = double.infinity,
- EdgeInsetsGeometry? margin,
Implementation
Widget vLine(
{Color color = Colors.black,
double width = 1,
double height = double.infinity,
EdgeInsetsGeometry? margin}) {
return Container(
margin: margin,
height: height,
width: width,
color: color,
);
}