ResponsiveContainer constructor

const ResponsiveContainer({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets? padding,
  4. bool useShadow = true,
  5. Color? color,
})

Implementation

const ResponsiveContainer({
  super.key,
  required this.child,
  this.padding,
  this.useShadow = true,
  this.color,
});