shouldBeEqualToIgnoringCase method

void shouldBeEqualToIgnoringCase(
  1. String expected
)

Asserts that the value is equal to expected ignoring case sensitivity.

Implementation

void shouldBeEqualToIgnoringCase(String expected) {
  expect(this, equalsIgnoringCase(expected));
}