InfoLabel constructor

const InfoLabel({
  1. Key? key,
  2. Widget? child,
  3. required String label,
  4. TextStyle? labelStyle,
  5. bool isHeader = true,
})

Creates an info label.

Implementation

const InfoLabel({
  Key? key,
  this.child,
  required this.label,
  this.labelStyle,
  this.isHeader = true,
}) : super(key: key);