PageView constructor
PageView({})
Implementation
PageView({
List<DslWidget>? children,
this.initialPage = 0,
this.allowScrolling = true,
this.horizontal = true,
this.width,
this.height,
this.showIndicator = true,
String? name,
Object? visible,
}) : children = List.unmodifiable(children ?? const <DslWidget>[]),
super(name: name, visible: _normalizeVisibility(visible));