CssSizing constructor

const CssSizing({
  1. Widget? child,
  2. Key? key,
  3. CssSizingValue? maxHeight,
  4. CssSizingValue? maxWidth,
  5. CssSizingValue? minHeight,
  6. CssSizingValue? minWidth,
  7. Axis? preferredAxis,
  8. CssSizingValue? preferredHeight,
  9. CssSizingValue? preferredWidth,
})

Creates a CSS sizing.

Implementation

const CssSizing({
  super.child,
  super.key,
  this.maxHeight,
  this.maxWidth,
  this.minHeight,
  this.minWidth,
  this.preferredAxis,
  this.preferredHeight,
  this.preferredWidth,
});