SemanticsLabelBuilder constructor

SemanticsLabelBuilder({
  1. String separator = ' ',
  2. TextDirection? textDirection,
})

Creates a new SemanticsLabelBuilder.

The separator is used between text parts (defaults to space). The textDirection specifies the overall text direction for the concatenated label.

Implementation

SemanticsLabelBuilder({this.separator = ' ', this.textDirection});