NiceNotificationBadge constructor

const NiceNotificationBadge({
  1. Key? key,
  2. required Widget child,
  3. int count = 0,
  4. Color? backgroundColor,
  5. Color? textColor,
  6. bool showZero = false,
  7. double size = 18,
  8. Offset offset = const Offset(0, 0),
})

Implementation

const NiceNotificationBadge({
  super.key,
  required this.child,
  this.count = 0,
  this.backgroundColor,
  this.textColor,
  this.showZero = false,
  this.size = 18,
  this.offset = const Offset(0, 0),
});