LimitedBox constructor

LimitedBox({
  1. double maxWidth = double.infinity,
  2. double maxHeight = double.infinity,
  3. Widget? child,
  4. Key? key,
})

Implementation

LimitedBox({
  this.maxWidth = double.infinity,
  this.maxHeight = double.infinity,
  super.child,
  super.key,
});