decodeBase64 function

String decodeBase64(
  1. String str
)

Decode a string in Base64 encoding into the equivalent non-encoded string. This is useful for handling the results of the Stdout or Stderr events.

Implementation

String decodeBase64(String str) => utf8.decode(base64.decode(str));