requestReceivedParamsServingInfoAsBytes property

List<int> requestReceivedParamsServingInfoAsBytes

Implementation

core.List<core.int> get requestReceivedParamsServingInfoAsBytes =>
    convert.base64.decode(requestReceivedParamsServingInfo!);
void requestReceivedParamsServingInfoAsBytes=(List<int> bytes_)

Implementation

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