ResponsiveContainer constructor

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

Implementation

const ResponsiveContainer({
  Key? key,
  Color? backgroundColor,
  List<Widget>? children,
  BoxDecoration? decoration,
  EdgeInsets? padding,
  EdgeInsets? margin,
  double? width,
  double maxWidth = double.infinity,
  double? minWidth,
  double? height,
  double? maxHeight,
  double? minHeight,
}) : super(
          key: key,
          backgroundColor: backgroundColor,
          decoration: decoration,
          padding: padding,
          margin: margin,
          width: width,
          maxWidth: maxWidth,
          minWidth: minWidth,
          height: height,
          maxHeight: maxHeight,
          minHeight: minHeight,
          children: children);