decodeBase64 property

String get decodeBase64

Implementation

String get decodeBase64 {
  try {
    return utf8.decode(base64.decode(this));
  } catch (_) {
    return '';
  }
}