postData property

String? postData

Request's post body, if any.

Implementation

String? get postData => event.request.postDataEntries
    ?.map((e) => e.bytes)
    .nonNulls
    .map((e) => utf8.decode(base64Decode(e)))
    .join('');