shouldStartWith method

void shouldStartWith(
  1. String expected
)

Asserts that the value starts with expected with case sensitivity.

Implementation

void shouldStartWith(String expected) {
  expect(
    this,
    startsWith(expected),
    reason: 'Expected the String $this to start with $expected',
  );
}