ResponsiveRow constructor

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

Implementation

const ResponsiveRow({
  Key? key,
  Color? backgroundColor,
  List<Widget>? children,
  Alignment? alignment,
  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);