buildDash method

Row buildDash()

Implementation

Row buildDash() {
  return Row(
    children: List.generate(
      150 ~/ 2,
      (index) => Expanded(
        child: Container(
          color: index.isOdd ? Colors.transparent : Colors.grey,
          height: 1,
        ),
      ),
    ),
  );
}