MinBadgeWrapper constructor

const MinBadgeWrapper({
  1. Key? key,
  2. required Widget label,
  3. required Widget child,
  4. MinBadgeVariant variant = MinBadgeVariant.primary,
  5. MinBadgePosition position = MinBadgePosition.topRight,
  6. Offset? offset,
  7. Widget? icon,
  8. BoxDecoration? badgeDecoration,
})

Implementation

const MinBadgeWrapper({
  super.key,
  required this.label,
  required this.child,
  this.variant = MinBadgeVariant.primary,
  this.position = MinBadgePosition.topRight,
  this.offset,
  this.icon,
  this.badgeDecoration,
});