DebugBadge constructor

const DebugBadge({
  1. required String text,
  2. required Color color,
  3. IconData? icon,
  4. double iconSize = 12,
  5. double textSize = 10,
  6. Key? key,
})

Creates a debug badge.

Implementation

const DebugBadge({
  required this.text,
  required this.color,
  this.icon,
  this.iconSize = 12,
  this.textSize = 10,
  super.key,
});