localeMatcher property
String?
get
localeMatcher
The locale matching algorithm to use.The default is "best fit". For information about this option, see the {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation Intl page}.
Implementation
_i2.String? get localeMatcher => _i5.getProperty(
this,
'localeMatcher',
);
set
localeMatcher
(String? value)
Implementation
set localeMatcher(_i2.String? value) {
_i5.setProperty(
this,
'localeMatcher',
value ?? _i4.undefined,
);
}