DefaultTextHeightBehavior constructor

const DefaultTextHeightBehavior(
  1. {Key? key,
  2. required TextHeightBehavior textHeightBehavior,
  3. required Widget child}
)

Creates a default text height behavior for the given subtree.

Implementation

const DefaultTextHeightBehavior({
  super.key,
  required this.textHeightBehavior,
  required super.child,
});