ValueMatcher constructor
      
      ValueMatcher({ 
    
    
- bool? boolMatch,
- DoubleMatcher? doubleMatch,
- ListMatcher? listMatch,
- NullMatch? nullMatch,
- OrMatcher? orMatch,
- bool? presentMatch,
- StringMatcher? stringMatch,
Implementation
ValueMatcher({
  this.boolMatch,
  this.doubleMatch,
  this.listMatch,
  this.nullMatch,
  this.orMatch,
  this.presentMatch,
  this.stringMatch,
});