UnreadMessage constructor

UnreadMessage({
  1. Key? key,
  2. required int unreadCount,
  3. double? width = 22.0,
  4. double? height = 22.0,
})

Implementation

UnreadMessage(
    {Key? key,
    required this.unreadCount,
    this.width = 22.0,
    this.height = 22.0})
    : super(key: key);