WebPageFormContainer constructor

const WebPageFormContainer({
  1. Key? key,
  2. required Widget child,
  3. double maxWidth = 1400.0,
  4. double sideMarginPercentage = 0.18,
})

Implementation

const WebPageFormContainer({
  Key? key,
  required this.child,
  this.maxWidth = 1400.0,
  this.sideMarginPercentage = 0.18, // 18% margin by default
}) : super(key: key);