FlexibleGridOptions constructor
FlexibleGridOptions(- {required double? customWidth,
- required double? customHeight,
- required int rows,
- required int columns,
- required List<Widget> componentsToRender,
- Color backgroundColor = Colors.transparent,
- bool showAspect = true}
)
Implementation
FlexibleGridOptions({
required this.customWidth,
required this.customHeight,
required this.rows,
required this.columns,
required this.componentsToRender,
this.backgroundColor = Colors.transparent,
this.showAspect = true,
});