FlexibleGridOptions constructor

FlexibleGridOptions(
  1. {required double? customWidth,
  2. required double? customHeight,
  3. required int rows,
  4. required int columns,
  5. required List<Widget> componentsToRender,
  6. Color backgroundColor = Colors.transparent,
  7. 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,
});