describeMismatch method

  1. @override
Description describeMismatch(
  1. dynamic item,
  2. Description mismatchDescription,
  3. Map matchState,
  4. bool verbose
)
override

Builds a textual description of a specific mismatch.

item is the value that was tested by matches; matchState is the Map that was passed to and supplemented by matches with additional information about the mismatch, and mismatchDescription is the Description that is being built to describe the mismatch.

A few matchers make use of the verbose flag to provide detailed information that is not typically included but can be of help in diagnosing failures, such as stack traces.

Implementation

@override
Description describeMismatch(dynamic item, Description mismatchDescription,
    Map matchState, bool verbose) {
  var name = _name ?? _stripDynamic(T);
  return mismatchDescription.add("is not an instance of '$name'");
}