LabelValue constructor
const
LabelValue({
- Key? key,
- EdgeInsetsGeometry? padding,
- CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
- required String label,
- Color? labelColor,
- TextStyle? labelStyle,
- String? value,
- Widget? child,
- FontWeight? labelWeight,
- 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);