Skip to content

decodeBase64 JavaScriptDart

Decodes an encoded base64 string to a plain string.

Parameters

  • encodedStr::string

Returns

string

Examples

javascript
decodeBase64('dGhpcyBpcyB0ZXN0'); // Returns 'this is test'

Released under the MIT License