base64Encode function

String? base64Encode(
  1. String val
)

Implementation

String? base64Encode(String val) {
  return MyJS.btoa(val);
}