ResponsiveLayoutGrid constructor
      const
      ResponsiveLayoutGrid({ 
    
    
- Key? key,
 - double minimumColumnWidth = defaultMinimumColumnWidth,
 - double columnGutterWidth = defaultGutter,
 - double rowGutterHeight = defaultGutter,
 - int? maxNumberOfColumns,
 - EdgeInsets padding = EdgeInsets.zero,
 - List<
Widget> children = const [], - ResponsiveLayoutFactory layoutFactory = defaultLayoutFactory,
 
Implementation
const ResponsiveLayoutGrid({
  Key? key,
  this.minimumColumnWidth = defaultMinimumColumnWidth,
  this.columnGutterWidth = defaultGutter,
  this.rowGutterHeight = defaultGutter,
  this.maxNumberOfColumns,
  this.padding = EdgeInsets.zero,
  this.children = const [],
  this.layoutFactory = defaultLayoutFactory,
}) : super(key: key);