ShouldMatch static method

ValidationResponse ShouldMatch(
  1. String? actual,
  2. String expected
)

Implementation

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