BaseListView constructor

const BaseListView({
  1. Key? key,
  2. double gap = 6,
  3. EdgeInsets? padding,
  4. ScrollController? controller,
  5. List<Widget> children = const [],
  6. bool withDividers = false,
})

Implementation

const BaseListView({
  super.key,
  this.gap = 6,
  this.padding,
  this.controller,
  this.children = const [],
  this.withDividers = false,
});