LabelValueList constructor
const
LabelValueList({
- Key? key,
- required List<
LabelValuePair> items, - EdgeInsets? padding,
- String? heading,
- bool withDivider = false,
Implementation
const LabelValueList({
Key? key,
required this.items,
this.padding,
this.heading,
this.withDivider = false,
/// Default to no divider
}) : super(key: key);