UnreadCountIndicator constructor

const UnreadCountIndicator({
  1. Key? key,
  2. required int unreadCount,
  3. required Color backgroundColor,
  4. required TextStyle? textStyle,
})

Implementation

const UnreadCountIndicator({super.key, required this.unreadCount, required this.backgroundColor, required this.textStyle});