count method

Widget count(
  1. int count,
  2. String postfix
)

Implementation

Widget count(int count, String postfix) {
  return Row(children: [
    bold(count),
    Text(tr(postfix), style: const TextStyle(color: Colors.grey)),
  ]);
}