WrapLayout constructor

WrapLayout({
  1. Key? key,
  2. double? columnWidth,
  3. double columnMaxWidth = double.maxFinite,
  4. double columnMinWidth = 0,
  5. int? columnsCount,
  6. int? maxColumnsCount,
  7. double columnSpacing = 0,
  8. double rowSpacing = 0,
  9. WrapOrientation orientation = WrapOrientation.horizontal,
  10. dynamic children,
})

Implementation

WrapLayout({
  Key? key,
  this.columnWidth,
  this.columnMaxWidth = double.maxFinite,
  this.columnMinWidth = 0,
  this.columnsCount,
  this.maxColumnsCount,
  this.columnSpacing = 0,
  this.rowSpacing = 0,
  this.orientation = WrapOrientation.horizontal,
  children,
}) : super(key: key, children: children);