decodeBase64 method

String? decodeBase64()

Decode from base64 to readable text

Implementation

String? decodeBase64() {
  if (this == null) {
    return null;
  }
  return utf8.decode(base64.decode(this!));
}