getPatchUri static method
Implementation
static Uri getPatchUri({
required final String path,
final QueryType? queryType,
}) =>
getUri(
path: path,
queryType: queryType,
addUserAgentParameters: false,
userInfo:
OpenFoodAPIConfiguration.getQueryType(queryType) == QueryType.PROD
? null
: HttpHelper.userInfoForTest,
);