CyberGrid constructor

const CyberGrid({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. required String heightRows,
  5. EdgeInsets? padding,
  6. EdgeInsets? margin,
  7. Color? backgroundColor,
  8. double rowSpace = 0,
  9. required List<CyberGridRow> rows,
})

Implementation

const CyberGrid({
  super.key,
  this.width,
  this.height,
  required this.heightRows,
  this.padding,
  this.margin,
  this.backgroundColor,
  this.rowSpace = 0,
  required this.rows,
});