bold function

Widget bold(
  1. int count
)

Implementation

Widget bold(int count) {
  return Text(count.toString(),
      style: const TextStyle(fontWeight: FontWeight.bold));
}