atob function
Decodes a string of data which has been encoded using base-64 encoding.
console.log(atob("aGVsbG8gd29ybGQ=")); // outputs 'hello world'
Implementation
_i2.String atob(_i2.String s) => _i4.callMethod(
_self,
'atob',
[s],
);