ResponsiveCol constructor

const ResponsiveCol({
  1. Key? key,
  2. Map<ScreenSize, int>? gridSizes,
  3. Map<ScreenSize, int>? gridOffsetSizes,
  4. Alignment alignment = Alignment.topLeft,
  5. Color? backgroundColor,
  6. List<Widget>? children,
  7. BoxDecoration? decoration,
  8. EdgeInsets? padding,
  9. EdgeInsets? margin,
  10. double? width,
  11. double? maxWidth,
  12. double? minWidth,
  13. double? height,
  14. double? maxHeight,
  15. double? minHeight,
})

Implementation

const ResponsiveCol({
  Key? key,
  this.gridSizes,
  this.gridOffsetSizes,
  Alignment alignment = Alignment.topLeft,
  Color? backgroundColor,
  List<Widget>? children,
  BoxDecoration? decoration,
  EdgeInsets? padding,
  EdgeInsets? margin,
  double? width,
  double? maxWidth,
  double? minWidth,
  double? height,
  double? maxHeight,
  double? minHeight,
}) : super(
          key: key,
          alignment: alignment,
          backgroundColor: backgroundColor,
          decoration: decoration,
          padding: padding,
          margin: margin,
          width: width,
          maxWidth: maxWidth,
          minWidth: minWidth,
          height: height,
          maxHeight: maxHeight,
          minHeight: minHeight,
          children: children);