NiceCenterConstrained constructor

const NiceCenterConstrained({
  1. Key? key,
  2. required Widget child,
  3. double maxWidth = 1200,
  4. EdgeInsets? padding,
  5. Color? backgroundColor,
})

Implementation

const NiceCenterConstrained({
  super.key,
  required this.child,
  this.maxWidth = 1200,
  this.padding,
  this.backgroundColor,
});