ListGroupStyle constructor
const
ListGroupStyle({
- Axis scrollDirection = Axis.vertical,
- bool reverse = false,
- ScrollController? controller,
- bool? primary,
- ScrollPhysics? physics,
- double? height,
- 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._();