decodeBase64 static method

String decodeBase64(
  1. String data
)

Decode data from base64

Implementation

static String decodeBase64(String data) {
  return utf8.decode(base64Decode(data));
}