ResponsiveContainer constructor

const ResponsiveContainer({
  1. Key? key,
  2. required Widget child,
  3. double? width,
  4. double? height,
  5. EdgeInsets? padding,
  6. EdgeInsets? margin,
  7. Color? color,
  8. Decoration? decoration,
  9. AlignmentGeometry? alignment,
})

Implementation

const ResponsiveContainer({
 super.key,
  required this.child,
  this.width,
  this.height,
  this.padding,
  this.margin,
  this.color,
  this.decoration,
  this.alignment,
});