btoa function
Creates a base-64 ASCII encoded string from the input string.
console.log(btoa("hello world")); // outputs "aGVsbG8gd29ybGQ="
Implementation
_i2.String btoa(_i2.String s) => _i4.callMethod(
_self,
'btoa',
[s],
);