AppBadge constructor

const AppBadge({
  1. Key? key,
  2. required int count,
  3. bool show = true,
  4. required Widget child,
})

Implementation

const AppBadge({
  super.key,
  required this.count,
  this.show = true,
  required this.child,
});