LabelValueList constructor

const LabelValueList({
  1. Key? key,
  2. required List<LabelValuePair> items,
  3. EdgeInsets? padding,
  4. String? heading,
  5. 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);