withGridPlacement method

GridPlacement withGridPlacement({
  1. Key? key,
  2. int? columnStart,
  3. int columnSpan = 1,
  4. int? rowStart,
  5. int rowSpan = 1,
})

Implementation

GridPlacement withGridPlacement({
  Key? key,
  int? columnStart,
  int columnSpan = 1,
  int? rowStart,
  int rowSpan = 1,
}) {
  return GridPlacement(
    key: key,
    columnStart: columnStart,
    columnSpan: columnSpan,
    rowStart: rowStart,
    rowSpan: rowSpan,
    child: this,
  );
}