DraftModeUIBadge constructor

const DraftModeUIBadge({
  1. Key? key,
  2. required String label,
  3. Color? backgroundColor,
  4. Color? textColor,
  5. EdgeInsets? padding,
  6. double? minSize,
  7. double? borderRadius,
})

Implementation

const DraftModeUIBadge({
  super.key,
  required this.label,
  this.backgroundColor,
  this.textColor,
  this.padding,
  this.minSize,
  this.borderRadius,
});