PlexBadge constructor

const PlexBadge({
  1. Key? key,
  2. required String label,
  3. PlexBadgeTone tone = PlexBadgeTone.neutral,
  4. PlexBadgeAppearance appearance = PlexBadgeAppearance.soft,
  5. bool dot = false,
  6. bool square = false,
})

Implementation

const PlexBadge({
  super.key,
  required this.label,
  this.tone = PlexBadgeTone.neutral,
  this.appearance = PlexBadgeAppearance.soft,
  this.dot = false,
  this.square = false,
});