yline static method
Div纵轴分割线
Implementation
static Widget yline({
Key? key,
Color color = Colors.black,
double width = 1,
double? height,
double thick = 0,
}){
return Div(null,
style: DivStyle(
color: color,
width: width,
height: height,
margin: [0, thick],
),
key: key,
);
}