ShouldMatch static method
Implementation
static ValidationResponse ShouldMatch(String? actual, String expected) {
return ValidationResponse(actual == expected, message: actual);
}
static ValidationResponse ShouldMatch(String? actual, String expected) {
return ValidationResponse(actual == expected, message: actual);
}