InfoLabel.rich constructor

const InfoLabel.rich({
  1. Key? key,
  2. Widget? child,
  3. required InlineSpan label,
  4. bool isHeader = true,
})

Creates an info label.

Implementation

const InfoLabel.rich({
  super.key,
  this.child,
  required this.label,
  this.isHeader = true,
});