base64Decode static method

String base64Decode(
  1. String data
)

Implementation

static String base64Decode(String data) {
  List<int> bytes = base64.decode(data);
  String result = utf8.decode(bytes);
  return result;
}