formatMatcher property
      
      FormatMatcher?
      get
      formatMatcher
      
    
    
    
Implementation
_i3.FormatMatcher? get formatMatcher => switch (_i5.getProperty(
      this,
      'formatMatcher',
    )) {
      _i2.String name => _i3.FormatMatcher.values.byName(name),
      _ => null
    };
      
      set
      formatMatcher
      (FormatMatcher? value) 
      
    
    
    
Implementation
set formatMatcher(_i3.FormatMatcher? value) {
  _i5.setProperty(
    this,
    'formatMatcher',
    value?.name ?? _i4.undefined,
  );
}