dottedDivider method
Implementation
Widget dottedDivider(context) {
return Padding(
padding: EdgeInsets.zero,
child: DottedLine(
direction: Axis.horizontal,
lineLength: double.infinity,
lineThickness: 1.0,
dashLength: 1.0,
dashColor:
Theme.of(context).textTheme.bodyMedium!.color!.withOpacity(0.4),
dashRadius: 10.0,
dashGapLength: 4.0,
dashGapColor: Colors.transparent,
dashGapRadius: 10.0,
));
}