withWrapPlacement method

WrapLayoutPlacement withWrapPlacement({
  1. Key? key,
  2. dynamic rowStart = false,
  3. dynamic rowEnd = false,
  4. dynamic columnSpan = 1,
  5. dynamic fillRow = false,
})

Implementation

WrapLayoutPlacement withWrapPlacement(
    {Key? key,
    rowStart = false,
    rowEnd = false,
    columnSpan = 1,
    fillRow = false}) {
  return WrapLayoutPlacement(
    key: key,
    columnSpan: columnSpan,
    rowStart: rowStart,
    rowEnd: rowEnd,
    fillRow: fillRow,
    child: this,
  );
}