ResponsiveLayoutCell constructor

const ResponsiveLayoutCell({
  1. Key? key,
  2. CellPosition position = const CellPositionNextColumn(),
  3. ColumnSpan columnSpan = const ColumnSpan.size(1),
  4. required Widget child,
})

Implementation

const ResponsiveLayoutCell({
  Key? key,
  this.position = const CellPositionNextColumn(),
  this.columnSpan = const ColumnSpan.size(1),
  required this.child,
}) : super(key: key);