ListBuilder constructor

const ListBuilder({
  1. Key? key,
  2. Widget? customListBuilder(
    1. BuildContext,
    2. int
    )?,
  3. ListStyle style = const ListStyle(),
})

Implementation

const ListBuilder({
  Key? key,
  this.customListBuilder,
  this.style = const ListStyle(),
}) : super(key: key);