ListView constructor
ListView({})
Implementation
ListView({
required Object? source,
required this.itemBuilder,
this.spacing,
this.shrinkWrap = false,
this.horizontal = false,
this.padding,
String? name,
Object? visible,
}) : source = normalizeExpression(source),
super(name: name, visible: _normalizeVisibility(visible));