IntrinsicHeightModifier constructor

const IntrinsicHeightModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
})

Creates a widget that sizes its child to the child's intrinsic height.

This class is relatively expensive. Avoid using it where possible.

Implementation

const IntrinsicHeightModifier({
  super.key,
  super.child,
  super.modifierKey,
});