horizontalLine function

Widget horizontalLine({
  1. Color? color,
  2. double? thickness,
  3. double? width,
})

Implementation

Widget horizontalLine({Color? color, double? thickness, double? width}) {
  return Container(
    width: width ?? double.infinity,
    height: thickness ?? 1,
    color: color ?? BilionsColors.lightGrey,
  );
}