FastBadge constructor

const FastBadge({
  1. Key? key,
  2. EdgeInsetsGeometry? padding = _kBadgePadding,
  3. String? text = _kBadgeText,
  4. Color? backgroundColor,
  5. BorderRadius? borderRadius,
  6. Color? textColor,
})

Implementation

const FastBadge({
  super.key,
  this.padding = _kBadgePadding,
  this.text = _kBadgeText,
  this.backgroundColor,
  this.borderRadius,
  this.textColor,
});