dashedDivider function
Implementation
Widget dashedDivider({double? height}) => Row(
children: [
for (int i = 0; i < 40; i++)
Expanded(
child: Row(
children: [
Expanded(child: Divider(thickness: 1, height: height)),
Expanded(child: Container()),
],
),
),
],
);