httpBody property

Data? httpBody

The body of the request.

See NSURLRequest.HTTPBody

Implementation

Data? get httpBody {
  final body = _nsObject.HTTPBody;
  if (body == null) {
    return null;
  }
  return Data._(ncb.NSData.castFrom(body));
}