ResponsiveCenter constructor

const ResponsiveCenter({
  1. Key? key,
  2. double maxContentWidth = Breakpoint.desktop,
  3. EdgeInsetsGeometry padding = EdgeInsets.zero,
  4. required Widget child,
})

Implementation

const ResponsiveCenter({
  super.key,
  this.maxContentWidth = Breakpoint.desktop,
  this.padding = EdgeInsets.zero,
  required this.child,
});