S360fDataDisplay constructor

const S360fDataDisplay({
  1. required String label,
  2. required String subLabel,
  3. TextStyle? labelStyle,
  4. TextStyle? subLabelStyle,
  5. @Deprecated("Use 'isLabelHighlighted' instead.") bool isLabelBold = false,
  6. bool isLabelHighlighted = false,
  7. Key? key,
})

Implementation

const S360fDataDisplay({
  required this.label,
  required this.subLabel,
  this.labelStyle,
  this.subLabelStyle,
  @Deprecated("Use 'isLabelHighlighted' instead.") this.isLabelBold = false,
  this.isLabelHighlighted = false,
  super.key,
});