HAListItemView constructor

const HAListItemView({
  1. Key? key,
  2. ListViewStyle style = ListViewStyle.list,
  3. EdgeInsets? scrollPadding,
  4. List? data,
  5. String? groupByField,
  6. Widget header(
    1. dynamic
    )?,
  7. Widget builder(
    1. BuildContext context,
    2. DocumentSnapshot<Object?> snapshot
    )?,
  8. double? maxCrossAxisExtent,
})

Implementation

const HAListItemView({
  Key? key,
  this.style = ListViewStyle.list,
  this.scrollPadding,
  this.data,
  this.groupByField,
  this.header,
  this.builder,
  this.maxCrossAxisExtent,
}) : super(key: key);