CountDecoration typedef

CountDecoration = Widget? Function(Widget count, int? likeCount)

return count widget with decoration

Implementation

typedef CountDecoration = Widget? Function(
  Widget count,
  int? likeCount,
);