hLine function

Widget hLine({
  1. Color color = Colors.black,
  2. double height = 1,
  3. double width = double.infinity,
  4. 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,
  );
}