HubbleList constructor

const HubbleList({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. double? gap,
  5. Axis? scrollDirection,
  6. bool? shrinkWrap,
  7. required List<WidgetBuilder> items,
})

Implementation

const HubbleList({
  super.key,
  this.height,
  this.width,
  this.gap,
  this.scrollDirection,
  this.shrinkWrap,
  required this.items,
});