ValueMatcher constructor

ValueMatcher({
  1. bool? boolMatch,
  2. DoubleMatcher? doubleMatch,
  3. ListMatcher? listMatch,
  4. NullMatch? nullMatch,
  5. OrMatcher? orMatch,
  6. bool? presentMatch,
  7. StringMatcher? stringMatch,
})

Implementation

ValueMatcher({
  this.boolMatch,
  this.doubleMatch,
  this.listMatch,
  this.nullMatch,
  this.orMatch,
  this.presentMatch,
  this.stringMatch,
});