CyberGrid constructor
const
CyberGrid({
- Key? key,
- double? width,
- double? height,
- required String heightRows,
- EdgeInsets? padding,
- EdgeInsets? margin,
- Color? backgroundColor,
- double rowSpace = 0,
- 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,
});