formatMatcher property

Implementation

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

Implementation

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