MiniBadge constructor

const MiniBadge({
  1. Key? key,
  2. Widget? child,
  3. String? value,
  4. bool dot = false,
})

Implementation

const MiniBadge({
  super.key,
  this.child,
  this.value,
  this.dot = false,
});