From 12f5cce120c08bc9d7df689cbd5b1ea1acbeb0a6 Mon Sep 17 00:00:00 2001 From: yogesh-rd <48060348+yogesh-rd@users.noreply.github.com> Date: Mon, 10 Feb 2025 11:41:38 +0530 Subject: [PATCH] Add missing consumption of function params --- lib/matchers.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/matchers.dart b/lib/matchers.dart index 283cb54..23324f3 100644 --- a/lib/matchers.dart +++ b/lib/matchers.dart @@ -20,7 +20,10 @@ Matcher matchesUri({ .having((e) => e.fragment, 'fragment', fragment) .having((e) => e.host, 'host', host) .having((e) => e.path, 'path', path) - .having((e) => e.port, 'port', port); + .having((e) => e.port, 'port', port) + .having((e) => e.queryParameters, 'queryParameters', queryParameters) + .having((e) => e.scheme, 'scheme', scheme) + .having((e) => e.userInfo, 'userInfo', userInfo); /* _feature('Uri', 'path', path, (i) => i.path),