GridRow constructor

const GridRow({
  1. Key? key,
  2. required List<GridCol> children,
  3. MainAxisAlignment justify = MainAxisAlignment.start,
  4. CrossAxisAlignment align = CrossAxisAlignment.start,
  5. double rowGap = 0,
  6. double colGap = 0,
  7. EdgeInsetsGeometry? padding,
  8. EdgeInsetsGeometry? margin,
})

Implementation

const GridRow({
  super.key,
  required this.children,
  this.justify = MainAxisAlignment.start,
  this.align = CrossAxisAlignment.start,
  this.rowGap = 0,
  this.colGap = 0,
  this.padding,
  this.margin,
});