ResponsiveGridRow constructor

const ResponsiveGridRow({
  1. required List<ResponsiveGridCol> children,
  2. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
  3. int rowSegments = 12,
  4. Key? key,
})

Implementation

const ResponsiveGridRow({
  required this.children,
  this.crossAxisAlignment = CrossAxisAlignment.start,
  this.rowSegments = 12,
  Key? key,
}) : super(key: key);