AWSStreamedHttpRequest.patch constructor
AWSStreamedHttpRequest.patch(})
Creates a PATCH
request for uri
.
Implementation
AWSStreamedHttpRequest.patch(
Uri uri, {
Stream<List<int>>? body,
int? contentLength,
Map<String, String>? headers,
bool? followRedirects,
int? maxRedirects,
}) : this(
method: AWSHttpMethod.patch,
uri: uri,
headers: headers,
body: body,
contentLength: contentLength,
followRedirects: followRedirects,
maxRedirects: maxRedirects,
);