CenteredMaxWidth constructor

const CenteredMaxWidth({
  1. Key? key,
  2. required Widget child,
  3. double width = 768,
})

Implementation

const CenteredMaxWidth({
  super.key,
  required this.child,
  this.width = 768,
});