ListView constructor

const ListView({
  1. Key? key,
  2. ListType type = ListType.unordered,
  3. ListItemMarker? marker,
  4. required List<Component> children,
})

Implementation

const ListView({
  super.key,
  this.type = ListType.unordered,
  this.marker,
  required this.children,
});