defaultSeparatorBuilder function

Widget defaultSeparatorBuilder(
  1. BuildContext context
)

Implementation

Widget defaultSeparatorBuilder(
  BuildContext context,
) {
  return const Wrap(
    children: [
      SizedBox(
        height: 5,
      ),
      Divider(),
      SizedBox(
        height: 5,
      ),
    ],
  );
}