ListView constructor

ListView({
  1. Key? key,
  2. dynamic padding,
  3. bool? shrinkWrap,
  4. List<SduiNode> children = const [],
})

Implementation

ListView({Key? key, this.padding, this.shrinkWrap, this.children = const []})
  : super(key: key);