WrapLayoutPlacement constructor

const WrapLayoutPlacement({
  1. Key? key,
  2. @required dynamic child,
  3. dynamic rowStart = false,
  4. dynamic rowEnd = false,
  5. dynamic columnSpan = 1,
  6. dynamic fillRow = false,
})

Implementation

const WrapLayoutPlacement({
  Key? key,
  @required child,
  rowStart = false,
  rowEnd = false,
  columnSpan = 1,
  fillRow = false,
})  : columnSpan = columnSpan ?? 1,
      rowStart = rowStart ?? false,
      rowEnd = rowEnd ?? false,
      fillRow = fillRow ?? false,
      super(key: key, child: child);