WebScaffoldShell constructor

const WebScaffoldShell({
  1. Key? key,
  2. Widget? leftPanel,
  3. double leftPanelWidth = 280,
  4. required Widget center,
  5. double? centerMaxWidth = 900,
  6. Widget? rightPanel,
  7. double rightPanelWidth = 300,
})

Implementation

const WebScaffoldShell({
  super.key,
  this.leftPanel,
  this.leftPanelWidth = 280,
  required this.center,
  this.centerMaxWidth = 900,
  this.rightPanel,
  this.rightPanelWidth = 300,
});