FdcBadgeValue constructor

const FdcBadgeValue({
  1. required String text,
  2. Color? color,
  3. IconData? icon,
  4. TextStyle? textStyle,
})

Creates a FdcBadgeValue.

Implementation

const FdcBadgeValue({
  required this.text,
  this.color,
  this.icon,
  this.textStyle,
});