ModulaConstrainedBox constructor

const ModulaConstrainedBox({
  1. required Widget child,
  2. Key? key,
  3. double? minWidth,
  4. double? maxWidth,
  5. double? minHeight,
  6. double? maxHeight,
})

Implementation

const ModulaConstrainedBox({
  required this.child,
  super.key,
  this.minWidth,
  this.maxWidth,
  this.minHeight,
  this.maxHeight,
});