CyberGridRow constructor

const CyberGridRow({
  1. required String widthColumns,
  2. required List<Widget> children,
  3. EdgeInsets? padding,
  4. EdgeInsets? margin,
  5. Color? backgroundColor,
  6. bool enableHorizontalScroll = false,
})

Implementation

const CyberGridRow({
  required this.widthColumns,
  required this.children,
  this.padding,
  this.margin,
  this.backgroundColor,
  this.enableHorizontalScroll = false,
});