ListView constructor
const
ListView({
- Key? key,
- ListType type = ListType.unordered,
- ListItemMarker? marker,
- required List<
Component> children,
Implementation
const ListView({
super.key,
this.type = ListType.unordered,
this.marker,
required this.children,
});