SeniorList constructor

const SeniorList({
  1. Key? key,
  2. required List<SeniorListItem> items,
  3. SeniorListStyle? style,
  4. bool withLineSeparator = false,
})

Creates the SDS list component.

The items parameter is required.

Implementation

const SeniorList({
  Key? key,
  required this.items,
  this.style,
  this.withLineSeparator = false,
}) : super(key: key);