localeMatcher property

LocaleMatcherOptions? get localeMatcher

Implementation

_i3.LocaleMatcherOptions? get localeMatcher => switch (_i5.getProperty(
      this,
      'localeMatcher',
    )) {
      _i2.String name => _i3.LocaleMatcherOptions.values.byName(name),
      _ => null
    };
set localeMatcher (LocaleMatcherOptions? value)

Implementation

set localeMatcher(_i3.LocaleMatcherOptions? value) {
  _i5.setProperty(
    this,
    'localeMatcher',
    value?.name ?? _i4.undefined,
  );
}