UICollectionBlockData constructor

UICollectionBlockData({
  1. List<UIBlock>? children,
  2. FrameData? frame,
  3. int? gap,
  4. CollectionKind? kind,
  5. FlexDirection? direction,
  6. String? reference,
  7. int? gridSize,
  8. int? itemWidth,
  9. int? itemHeight,
  10. bool? fullItemWidth,
  11. bool? pageControl,
  12. bool? autoScroll,
  13. double? autoScrollInterval,
  14. UIBlockEventDispatcher? onClick,
})

Implementation

UICollectionBlockData({
  this.children,
  this.frame,
  this.gap,
  this.kind,
  this.direction,
  this.reference,
  this.gridSize,
  this.itemWidth,
  this.itemHeight,
  this.fullItemWidth,
  this.pageControl,
  this.autoScroll,
  this.autoScrollInterval,
  this.onClick,
});