hasStatus function

Matcher hasStatus(
  1. int statusCode
)

Asserts if the response status code is statusCode.

Implementation

Matcher hasStatus(int statusCode) => _ResponseStatusIs(
      statusCode: statusCode,
    );