childDivider method

Widget childDivider({
  1. Color? color,
})

Implementation

Widget childDivider({
  Color? color
}) {
  return Divider(color: color, height: 2);
}