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