locale property
The locale used to select region-specific glyphs.
Implementation
Locale get locale => _locale;
Implementation
set locale(Locale value) {
if (_locale == value)
return;
_locale = value;
_paragraph = null;
_needsLayout = true;
}