DirectionalityModifier constructor
const
DirectionalityModifier({
- Key? key,
- Widget? child,
- Key? modifierKey,
- required TextDirection textDirection,
Creates a widget that determines the directionality of text and text-direction-sensitive render objects.
The textDirection
and child
arguments must not be null.
Implementation
const DirectionalityModifier({
super.key,
super.child,
super.modifierKey,
required this.textDirection,
});