CLPageContainer constructor

const CLPageContainer({
  1. Key? key,
  2. required Widget child,
  3. double maxWidth = 1280.0,
  4. double horizontalPadding = 24.0,
})

Implementation

const CLPageContainer({
  super.key,
  required this.child,
  this.maxWidth = 1280.0,
  this.horizontalPadding = 24.0,
});