MyStillListView<T> constructor

MyStillListView<T>(
  1. List<T>? data,
  2. IndexedWidgetBuilder itemBuilder, {
  3. double? height,
  4. ScrollController? scrollController,
  5. bool canScroll = false,
  6. Key? listKey,
  7. Axis direction = Axis.vertical,
  8. Color bgColor = Colors.transparent,
  9. bool shrinkWrap = true,
  10. double? width,
  11. double spaceMain = 10.0,
})

Implementation

MyStillListView(this.data, this.itemBuilder,
    {this.height,
    this.scrollController,
    this.canScroll = false,
    this.listKey,
    this.direction = Axis.vertical,
    this.bgColor = Colors.transparent,
    this.shrinkWrap = true,
    this.width,
    this.spaceMain = 10.0});