GridPlacement constructor

const GridPlacement({
  1. LinePlacement? rowStart,
  2. LinePlacement? rowEnd,
  3. LinePlacement? columnStart,
  4. LinePlacement? columnEnd,
})

Creates a placement by specifying start/end lines for rows and columns using LinePlacement values.

Implementation

const factory GridPlacement({
  LinePlacement? rowStart,
  LinePlacement? rowEnd,
  LinePlacement? columnStart,
  LinePlacement? columnEnd,
}) = _LineGridPlacement;