withWrapPlacement method
WrapLayoutPlacement
withWrapPlacement({
- Key? key,
- dynamic rowStart = false,
- dynamic rowEnd = false,
- dynamic columnSpan = 1,
- 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,
);
}