requestReceivedParamsServingInfoAsBytes property
List<int>
get
requestReceivedParamsServingInfoAsBytes
Implementation
core.List<core.int> get requestReceivedParamsServingInfoAsBytes =>
convert.base64.decode(requestReceivedParamsServingInfo!);
set
requestReceivedParamsServingInfoAsBytes
(List<int> bytes_)
Implementation
set requestReceivedParamsServingInfoAsBytes(core.List<core.int> bytes_) {
requestReceivedParamsServingInfo =
convert.base64.encode(bytes_).replaceAll('/', '_').replaceAll('+', '-');
}