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