GridPlacement constructor

const GridPlacement({
  1. Key? key,
  2. required Widget child,
  3. int? columnStart,
  4. int columnSpan = 1,
  5. int? rowStart,
  6. int rowSpan = 1,
})

Implementation

const GridPlacement({
  Key? key,
  required Widget child,
  this.columnStart,
  this.columnSpan = 1,
  this.rowStart,
  this.rowSpan = 1,
}) : super(key: key, child: child);