SpellOutStringAttribute constructor

SpellOutStringAttribute({
  1. required TextRange range,
})

Creates a string attribute that denotes the text in range must be spell out when the assistive technologies announce the string.

Implementation

SpellOutStringAttribute({
  required TextRange range,
}) : super._(range: range) {
  _initSpellOutStringAttribute(this, range.start, range.end);
}