equalsUri function
Matches the parts of a Uri against expected
, all of which must equal for
the match to pass.
Implementation
Matcher equalsUri(Uri expected) => matchesUri(
fragment: expected.fragment,
host: expected.host,
path: expected.path,
port: expected.port,
queryParameters: expected.queryParameters,
scheme: expected.scheme,
userInfo: expected.userInfo,
);