WebContentWrapper constructor

const WebContentWrapper({
  1. required Widget child,
  2. double maxWidth = 680,
  3. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 16),
  4. bool showBackButton = false,
  5. Key? key,
})

Implementation

const WebContentWrapper({
  required this.child,
  this.maxWidth = 680,
  this.padding = const EdgeInsets.symmetric(horizontal: 16),
  this.showBackButton = false,
  super.key,
});