DefaultTextHeightBehaviorModifier constructor
const
DefaultTextHeightBehaviorModifier({
- Key? key,
- Widget? child,
- Key? modifierKey,
- required TextHeightBehavior textHeightBehavior,
Creates a default text height behavior for the given subtree.
The textHeightBehavior
and child
arguments are required and must not be null.
Implementation
const DefaultTextHeightBehaviorModifier({
super.key,
super.child,
super.modifierKey,
required this.textHeightBehavior,
});