WrapLayoutPlacement constructor
const
WrapLayoutPlacement({})
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);