The size of the request body, in bytes. This is calculated from bodyBytes.
The content length cannot be set for Request, since it's automatically calculated from bodyBytes.
@override int get contentLength => bodyBytes.length;
@override set contentLength(int? value) { throw UnsupportedError('Cannot set the contentLength property of ' 'non-streaming Request objects.'); }