DirectionalityModifier constructor

const DirectionalityModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. 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,
});