ResponsiveContainer constructor

const ResponsiveContainer({
  1. Key? key,
  2. required Widget child,
  3. double? mobileMaxWidth,
  4. double? tabletMaxWidth,
  5. double? desktopMaxWidth,
  6. EdgeInsets? padding,
  7. Color? backgroundColor,
  8. double? borderRadius,
})

Implementation

const ResponsiveContainer({
  Key? key,
  required this.child,
  this.mobileMaxWidth,
  this.tabletMaxWidth,
  this.desktopMaxWidth,
  this.padding,
  this.backgroundColor,
  this.borderRadius,
}) : super(key: key);