NiceDescriptionList constructor

const NiceDescriptionList({
  1. Key? key,
  2. required List<NiceDescriptionItem> items,
  3. bool horizontal = false,
  4. double spacing = 16,
  5. EdgeInsets? padding,
})

Implementation

const NiceDescriptionList({
  super.key,
  required this.items,
  this.horizontal = false,
  this.spacing = 16,
  this.padding,
});