ListGroupStyle constructor

const ListGroupStyle({
  1. Axis scrollDirection = Axis.vertical,
  2. bool reverse = false,
  3. ScrollController? controller,
  4. bool? primary,
  5. ScrollPhysics? physics,
  6. double? height,
  7. double? width,
})

Pass either the height or the width according to the layout direction of the parent widget

Implementation

const ListGroupStyle({
  this.scrollDirection = Axis.vertical,
  this.reverse = false,
  this.controller,
  this.primary,
  this.physics,
  this.height,
  this.width,
})  : assert(height != null || width != null),
      super._();