unIndentedLinePattern property
      
      RegExp?
      get
      unIndentedLinePattern
      
    
    
If a line matches this pattern, then its indentation should not be changed and it should not be evaluated against the other rules.
Implementation
_i7.RegExp? get unIndentedLinePattern => _i5.getProperty(
      this,
      'unIndentedLinePattern',
    );
      
      set
      unIndentedLinePattern
      (RegExp? value) 
      
    
    
    
Implementation
set unIndentedLinePattern(_i7.RegExp? value) {
  _i5.setProperty(
    this,
    'unIndentedLinePattern',
    value ?? _i6.undefined,
  );
}