GridRow constructor

const GridRow({
  1. Key? key,
  2. int xs = 1,
  3. int? sm,
  4. int? md,
  5. int? lg,
  6. int? xl,
  7. required List<Widget> children,
  8. double spacing = 8,
  9. double runSpacing = 8,
})

Creates a GridRow.

Implementation

const GridRow({
  super.key,
  this.xs = 1,
  this.sm,
  this.md,
  this.lg,
  this.xl,
  required this.children,
  this.spacing = 8,
  this.runSpacing = 8,
});