toLine method

Widget toLine(
  1. Color color, {
  2. double? width,
})

Implementation

Widget toLine(Color color, {double? width}) {
  return Container(
    color: color,
    height: w,
    width: width ?? double.infinity,
  );
}