PropertyCheckFailure constructor

PropertyCheckFailure(
  1. String? message, {
  2. required String matcherDescription,
})

Constructs a PropertyCheckFailure with a custom message and a description of the matcher that caused the failure.

Implementation

PropertyCheckFailure(
  super.message, {
  required this.matcherDescription,
});