base64Dec static method

String base64Dec(
  1. String input
)

Decodes a base64 string back to UTF-8 string

Implementation

static String base64Dec(String input) {
  final bytes = base64Decode(input);
  return utf8.decode(bytes);
}