InfoBadge constructor

const InfoBadge({
  1. Key? key,
  2. Widget? source,
  3. Color? color,
  4. Color? foregroundColor,
})

Creates an info badge.

Implementation

const InfoBadge({
  super.key,
  this.source,
  this.color,
  this.foregroundColor,
});