base64Decode static method

String base64Decode(
  1. String cipher
)

Implementation

static String base64Decode(String cipher) {
  Uint8List byte = convert.base64Decode(cipher);
  return convert.utf8.decode(byte);
}