ComListGroup constructor

const ComListGroup({
  1. Key? key,
  2. required List<Widget> children,
  3. Widget separatorBuilder(
    1. BuildContext,
    2. int
    )?,
  4. double? separatorThickness,
  5. Color? separatorColor,
  6. double? separatorIndent,
  7. double? separatorEndIndent,
})

Implementation

const ComListGroup({
  super.key,
  required this.children,
  this.separatorBuilder,
  this.separatorThickness,
  this.separatorColor,
  this.separatorIndent,
  this.separatorEndIndent,
});