toLineW method

Widget toLineW(
  1. Color color, {
  2. double? height,
})

Implementation

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