ResponsiveContainer constructor

const ResponsiveContainer({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets? margin,
  4. double? maxWidth,
})

Implementation

const ResponsiveContainer({
  super.key,
  required this.child,
  this.margin,
  this.maxWidth,
});