Skip to content

Commit

Permalink
don't need named argument
Browse files Browse the repository at this point in the history
  • Loading branch information
joanne-ter-maat authored and ricardoboss committed Oct 17, 2024
1 parent b16ece8 commit aa92680
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ extension RequestInformationExtensions on RequestInformation {
return;
}

final config = RequestConfiguration<T>(HttpHeaders(), [], queryParameters: createParameters());
final config = RequestConfiguration<T>(HttpHeaders(), [], createParameters());
configurator(config);

addQueryParameters(config.queryParameters.getQueryParameters());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ part of '../kiota_abstractions.dart';
/// Request configuration type for [BaseRequestBuilder]s.
class RequestConfiguration<T extends AbstractQueryParameters> {

const RequestConfiguration(this.headers, this.options, {required this.queryParameters});
const RequestConfiguration(this.headers, this.options, this.queryParameters);
/// The HTTP headers of the request.
final HttpHeaders headers;

Expand Down

0 comments on commit aa92680

Please sign in to comment.