LabelValue constructor

const LabelValue({
  1. Key? key,
  2. EdgeInsetsGeometry? padding,
  3. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
  4. required String label,
  5. Color? labelColor,
  6. TextStyle? labelStyle,
  7. String? value,
  8. Widget? child,
  9. FontWeight? labelWeight,
  10. TextStyle? valueStyle,
})

Implementation

const LabelValue({
  Key? key,
  this.padding,
  this.crossAxisAlignment = CrossAxisAlignment.start,
  required this.label,
  this.labelColor,
  this.labelStyle,
  this.value,
  this.child,
  this.labelWeight,
  this.valueStyle,
}) : super(key: key);