ContentBox constructor

const ContentBox({
  1. required Widget child,
  2. Key? key,
  3. bool isMaxWidth = false,
})

Implementation

const ContentBox({
  required this.child,
  super.key,
  this.isMaxWidth = false,
});